├── CNAME ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _data ├── backups │ ├── story-1.yml │ └── story.yml ├── design.yml ├── story-1 │ ├── 1.yml │ ├── 10.yml │ ├── 11.yml │ ├── 12.yml │ ├── 13.yml │ ├── 14.yml │ ├── 15-2.yml │ ├── 15.yml │ ├── 16-2.yml │ ├── 16.yml │ ├── 17.yml │ ├── 18.yml │ ├── 19.yml │ ├── 2.yml │ ├── 20.yml │ ├── 21.yml │ ├── 22.yml │ ├── 23.yml │ ├── 24.yml │ ├── 25.yml │ ├── 26.yml │ ├── 3.yml │ ├── 4.yml │ ├── 5.yml │ ├── 6.yml │ ├── 7.yml │ ├── 8.yml │ ├── 9.yml │ ├── index.yml │ └── testing-payload-size.yml ├── story-2 │ └── index.yml ├── story-3 │ └── index.yml └── story.yml ├── _includes ├── lifecycle-story-2.html ├── lifecycle-story-3.html ├── lifecycle-story.html └── lifecycle-v1.html ├── _layouts ├── default.html ├── rules.json └── rulesets.json ├── _site ├── LICENSE ├── README.md ├── about │ └── index.html ├── assets │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-tagsinput.css │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ ├── bootstrap.rtl.min.css.map │ │ └── style.css │ └── js │ │ ├── bootstrap-tagsinput.js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ ├── bootstrap.min.js.map │ │ ├── cookies.js │ │ └── popper.min.js ├── blueprints │ ├── ad-hoc-landscape.html │ ├── ad-hoc-landscape.md │ ├── api-economy.html │ ├── api-economy.md │ ├── apis-as-a-product.html │ ├── apis-as-a-product.md │ ├── apm.html │ ├── apm.md │ ├── applications.html │ ├── applications.md │ ├── asyncapi.html │ ├── asyncapi.md │ ├── asynchronous.html │ ├── asynchronous.md │ ├── automated-landscape.html │ ├── automated-landscape.md │ ├── business-in-the-clouds.html │ ├── business-in-the-clouds.md │ ├── business.html │ ├── business.md │ ├── category-defining.html │ ├── category-defining.md │ ├── centralization.html │ ├── centralization.md │ ├── challenges-advantage.html │ ├── challenges-advantage.md │ ├── challenges-motion.html │ ├── challenges-motion.md │ ├── challenges-stability.html │ ├── challenges-stability.md │ ├── challenges-trust.html │ ├── challenges-trust.md │ ├── challenges-usability.html │ ├── challenges-usability.md │ ├── changing-landscape.html │ ├── changing-landscape.md │ ├── ci-cd.html │ ├── ci-cd.md │ ├── code-first.html │ ├── code-first.md │ ├── collaborative.html │ ├── collaborative.md │ ├── collections.html │ ├── collections.md │ ├── composable.html │ ├── composable.md │ ├── consumer-lifecycle-deploy.html │ ├── consumer-lifecycle-deploy.md │ ├── consumer-lifecycle-develop.html │ ├── consumer-lifecycle-develop.md │ ├── consumer-lifecycle-discover.html │ ├── consumer-lifecycle-discover.md │ ├── consumer-lifecycle-evaluate.html │ ├── consumer-lifecycle-evaluate.md │ ├── consumer-lifecycle-integrate.html │ ├── consumer-lifecycle-integrate.md │ ├── consumer-lifecycle-observe.html │ ├── consumer-lifecycle-observe.md │ ├── consumer-lifecycle-test.html │ ├── consumer-lifecycle-test.md │ ├── contract-testing.html │ ├── contract-testing.md │ ├── contracts.html │ ├── contracts.md │ ├── design-first.html │ ├── design-first.md │ ├── design-review.html │ ├── design-review.md │ ├── developer-experience.html │ ├── developer-experience.md │ ├── devices.html │ ├── devices.md │ ├── digital-capabilities.html │ ├── digital-capabilities.md │ ├── digital-resources.html │ ├── digital-resources.md │ ├── discoverable-landscape.html │ ├── discoverable-landscape.md │ ├── documentation-collection-checklist.html │ ├── documentation-collection-checklist.md │ ├── education.html │ ├── education.md │ ├── enablement.html │ ├── enablement.md │ ├── entry-points-proxy-first.html │ ├── entry-points-proxy-first.md │ ├── federation.html │ ├── federation.md │ ├── forward-motion.html │ ├── forward-motion.md │ ├── future-proof.html │ ├── future-proof.md │ ├── gateways.html │ ├── gateways.md │ ├── governance-design.html │ ├── governance-design.md │ ├── governance.html │ ├── governance.md │ ├── graphql.html │ ├── graphql.md │ ├── guidelines.html │ ├── guidelines.md │ ├── history-of-apis.html │ ├── history-of-apis.md │ ├── history-of-web-apis.html │ ├── history-of-web-apis.md │ ├── how-do-you-do-api-first.html │ ├── how-do-you-do-api-first.md │ ├── innovation.html │ ├── innovation.md │ ├── integrations.html │ ├── integrations.md │ ├── interoperable.html │ ├── interoperable.md │ ├── jobs-to-be-done.html │ ├── jobs-to-be-done.md │ ├── json-schema.html │ ├── json-schema.md │ ├── landscape-mapping.html │ ├── landscape-mapping.md │ ├── legacy.html │ ├── legacy.md │ ├── lifecycle.html │ ├── lifecycle.md │ ├── low-code-no-code.html │ ├── low-code-no-code.md │ ├── microservices.html │ ├── microservices.md │ ├── mobile.html │ ├── mobile.md │ ├── observable-landscape.html │ ├── observable-landscape.md │ ├── open-tech-standards-support.html │ ├── open-tech-standards-support.md │ ├── open-technologies.html │ ├── open-technologies.md │ ├── openapi.html │ ├── openapi.md │ ├── organizational-standards.html │ ├── organizational-standards.md │ ├── partnerships.html │ ├── partnerships.md │ ├── patterns.html │ ├── patterns.md │ ├── performance-testing.html │ ├── performance-testing.md │ ├── platform-governance.html │ ├── platform-governance.md │ ├── platform.html │ ├── platform.md │ ├── portal-and-network.html │ ├── portal-and-network.md │ ├── privacy-regulations.html │ ├── privacy-regulations.md │ ├── producer-lifecycle-define.html │ ├── producer-lifecycle-define.md │ ├── producer-lifecycle-deploy.html │ ├── producer-lifecycle-deploy.md │ ├── producer-lifecycle-design.html │ ├── producer-lifecycle-design.md │ ├── producer-lifecycle-develop.html │ ├── producer-lifecycle-develop.md │ ├── producer-lifecycle-distribute.html │ ├── producer-lifecycle-distribute.md │ ├── producer-lifecycle-observe.html │ ├── producer-lifecycle-observe.md │ ├── producer-lifecycle-secure.html │ ├── producer-lifecycle-secure.md │ ├── producer-lifecycle-test.html │ ├── producer-lifecycle-test.md │ ├── product-management.html │ ├── product-management.md │ ├── productivity.html │ ├── productivity.md │ ├── protocol-buffer.html │ ├── protocol-buffer.md │ ├── protocols.html │ ├── protocols.md │ ├── prototype-first.html │ ├── prototype-first.md │ ├── public-workspace-adoption.html │ ├── public-workspace-adoption.md │ ├── quality.html │ ├── quality.md │ ├── regulation-automation.html │ ├── regulation-automation.md │ ├── regulations.html │ ├── regulations.md │ ├── resources.html │ ├── resources.md │ ├── rules.html │ ├── rules.md │ ├── schema-registry.html │ ├── schema-registry.md │ ├── security-review.html │ ├── security-review.md │ ├── shift-left.html │ ├── shift-left.md │ ├── source-control.html │ ├── source-control.md │ ├── standards.html │ ├── standards.md │ ├── strategy.html │ ├── strategy.md │ ├── synchronous.html │ ├── synchronous.md │ ├── team-performance.html │ ├── team-performance.md │ ├── team-profile.html │ ├── team-profile.md │ ├── tempates.html │ ├── tempates.md │ ├── time-to-first-call.html │ ├── time-to-first-call.md │ ├── versioning-governance.html │ ├── versioning-governance.md │ ├── visibility.html │ ├── visibility.md │ ├── what-can-you-do-to-be-api-first-engineer.html │ ├── what-can-you-do-to-be-api-first-engineer.md │ ├── what-can-you-do-to-be-api-first-engineering-leadership.html │ ├── what-can-you-do-to-be-api-first-engineering-leadership.md │ ├── what-can-you-do-to-be-api-first-executive.html │ ├── what-can-you-do-to-be-api-first-executive.md │ ├── what-is-an-api.html │ ├── what-is-an-api.md │ ├── what-is-api-aware.html │ ├── what-is-api-aware.md │ ├── what-is-api-early.html │ ├── what-is-api-early.md │ ├── what-is-api-first.html │ ├── what-is-api-first.md │ ├── why-do-you-become-api-first.html │ ├── why-do-you-become-api-first.md │ ├── workspace-checklist.html │ ├── workspace-checklist.md │ ├── workspaces.html │ ├── workspaces.md │ ├── world-building.html │ ├── world-building.md │ ├── wsdl.html │ └── wsdl.md ├── contact │ └── index.html ├── gemfile ├── gitignore ├── images │ ├── aws-api-gateway-icon.png │ ├── aws-lambda-icon.jpg │ ├── aws-lambda-icon.png │ ├── blueprint.png │ ├── blueprints │ │ ├── always-investing-in-standards.jpeg │ │ ├── an-api-design-review.jpeg │ │ ├── anatomy-of-individual-api-requests.jpeg │ │ ├── api-design-first.jpeg │ │ ├── api-design-first.jpg │ │ ├── api-documentation-is-fundamental.jpeg │ │ ├── api-regulation-is-here.jpeg │ │ ├── api-workspaces-as-the-foundation.jpeg │ │ ├── applications-and-their-apis.png │ │ ├── bringing-more-observability-to-operations.jpeg │ │ ├── build-a-business-workflow.jpeg │ │ ├── community-theatrical-production.jpeg │ │ ├── creating-a-new-graphql-api.jpeg │ │ ├── defining-capabilities-using-collections.jpeg │ │ ├── discovery-as-the-default.jpeg │ │ ├── fundamental-api-testing.jpeg │ │ ├── generate-collection-from-mobile-application.jpeg │ │ ├── generate-collection-from-web-application.png │ │ ├── generate-openapi-using-code-annotations.png │ │ ├── having-an-api-strategy.jpeg │ │ ├── high-level-api-governance.jpeg │ │ ├── import-wsdl-for-an-existing-soap-web-service.png │ │ ├── improving-team-productivity.png │ │ ├── internal-landscape-mapping.jpeg │ │ ├── investing-in-test-automation.jpeg │ │ ├── leveraging-public-workspaces.jpeg │ │ ├── low-level-api-governance.jpeg │ │ ├── making-quality-a-ubiquitous-part-of-operations.jpeg │ │ ├── manually-define-collection-for-existing-api.jpeg │ │ ├── more-organizational-visibility.jpeg │ │ ├── new-api-using-the-asyncapi-specification.jpeg │ │ ├── new-api-using-the-openapi-specification.jpg │ │ ├── platform-api-governance.jpeg │ │ ├── prioritizing-api-first.jpeg │ │ ├── prototyping-a-new-api-using-a-postman-collection.jpeg │ │ ├── providing-onboarding-collections.png │ │ ├── public-teams-workspaces-and-apis.jpeg │ │ ├── putting-security-in-the-hands-of-developers-with-collections.jpeg │ │ ├── starting-with-a-reference-collection.jpeg │ │ ├── the-base-of-the-api-lifecycle.jpeg │ │ ├── versioning-governance.jpeg │ │ ├── why-openapi-matters-to-operations.jpeg │ │ └── workspace-standardization.jpeg │ ├── code-first-icon.png │ ├── code-first-icon.pxm │ ├── collection-icon.png │ ├── confluence-icon.png │ ├── design-first-icon.png │ ├── design-first-icon.pxm │ ├── github-icon.png │ ├── github-icon.pxm │ ├── graphql-icon.png │ ├── grpc-icon.png │ ├── grpc-icon.pxm │ ├── icons │ │ ├── Excellence.png │ │ ├── Operations.png │ │ ├── SOA.png │ │ ├── access-control.png │ │ ├── actions.png │ │ ├── activity.png │ │ ├── adaptive.png │ │ ├── aggregation.png │ │ ├── agility.png │ │ ├── agriculture.png │ │ ├── ai.png │ │ ├── alcohol.png │ │ ├── algorithm.png │ │ ├── alien.png │ │ ├── android.png │ │ ├── annotations.png │ │ ├── api-aware.png │ │ ├── api-early.png │ │ ├── api-first.png │ │ ├── api.png │ │ ├── apm.png │ │ ├── archway.png │ │ ├── arpanet.png │ │ ├── artifacts.png │ │ ├── async-api.png │ │ ├── asynchronous.png │ │ ├── auth.png │ │ ├── automation.png │ │ ├── availability.png │ │ ├── aws.png │ │ ├── binding.png │ │ ├── bottom-up.png │ │ ├── bounded-context.png │ │ ├── broken-function-auth.png │ │ ├── broken-object-auth.png │ │ ├── broken-user-auth.png │ │ ├── browse.png │ │ ├── bug.png │ │ ├── button.png │ │ ├── caching.png │ │ ├── camp.png │ │ ├── capabilities.png │ │ ├── cart.png │ │ ├── catalog.png │ │ ├── ccpa.png │ │ ├── centralization.png │ │ ├── certification.png │ │ ├── champion.png │ │ ├── change.png │ │ ├── channels.png │ │ ├── ci-cd.png │ │ ├── city.png │ │ ├── cloud API.png │ │ ├── cloud.png │ │ ├── code-generator.png │ │ ├── collaborate.png │ │ ├── collections.png │ │ ├── community-love.png │ │ ├── components.png │ │ ├── contract-testing.png │ │ ├── contract.png │ │ ├── control.png │ │ ├── corba.png │ │ ├── coverage.png │ │ ├── customer-service.png │ │ ├── dashboard.png │ │ ├── data-mangement.png │ │ ├── data.png │ │ ├── database.png │ │ ├── demonstrate.png │ │ ├── deploy.png │ │ ├── description.png │ │ ├── desktop.png │ │ ├── develop.png │ │ ├── device.png │ │ ├── direction.png │ │ ├── discovery.png │ │ ├── disperse.png │ │ ├── dns.png │ │ ├── document.png │ │ ├── documentation.png │ │ ├── domain-capture.png │ │ ├── doordash.png │ │ ├── drizzly.png │ │ ├── eacade.png │ │ ├── ebay.png │ │ ├── ec2.png │ │ ├── edi.png │ │ ├── editable.png │ │ ├── education.png │ │ ├── enable.png │ │ ├── encryption.png │ │ ├── energy.png │ │ ├── engagement.png │ │ ├── engineering.png │ │ ├── enterprise.png │ │ ├── environment.png │ │ ├── event-driven.png │ │ ├── events.png │ │ ├── example.png │ │ ├── excessive-data-exposure.png │ │ ├── execute.png │ │ ├── experiment.png │ │ ├── expertise.png │ │ ├── explore.png │ │ ├── export-package.png │ │ ├── extension.png │ │ ├── external.png │ │ ├── facebook.png │ │ ├── federated.png │ │ ├── feedback.png │ │ ├── fhir.png │ │ ├── finance.png │ │ ├── flickr.png │ │ ├── folder.png │ │ ├── food.png │ │ ├── forking.png │ │ ├── forks.png │ │ ├── format.png │ │ ├── forms.png │ │ ├── fragments.png │ │ ├── framework.png │ │ ├── ftp.png │ │ ├── gateway.png │ │ ├── gdpr.png │ │ ├── git.png │ │ ├── given.png │ │ ├── governance.png │ │ ├── graphql.png │ │ ├── grocery delivery.png │ │ ├── group.png │ │ ├── growth.png │ │ ├── grpc.png │ │ ├── grubhub.png │ │ ├── header.png │ │ ├── healthcare.png │ │ ├── hierarchy.png │ │ ├── hotspot.png │ │ ├── http-2.png │ │ ├── http-3.png │ │ ├── http-request.png │ │ ├── http.png │ │ ├── iana.png │ │ ├── image.png │ │ ├── individual.png │ │ ├── industry.png │ │ ├── info.png │ │ ├── infrastructure.png │ │ ├── injection.png │ │ ├── innovation.png │ │ ├── instacart.png │ │ ├── integrated-development.png │ │ ├── integration.png │ │ ├── intelligence.png │ │ ├── interceptor.png │ │ ├── interface.png │ │ ├── internal.png │ │ ├── interoperability.png │ │ ├── iphone.png │ │ ├── issues.png │ │ ├── iterate.png │ │ ├── json-schema.png │ │ ├── json.png │ │ ├── language-compatibility.png │ │ ├── latency.png │ │ ├── leader.png │ │ ├── leagal.png │ │ ├── learning center.png │ │ ├── lifecycle.png │ │ ├── log-checklist.png │ │ ├── log.png │ │ ├── manufacture.png │ │ ├── marketing.png │ │ ├── mass-dristribution.png │ │ ├── menu.png │ │ ├── message-type.png │ │ ├── message.png │ │ ├── methods.png │ │ ├── metrics-charts.png │ │ ├── microservices.png │ │ ├── migrate.png │ │ ├── mobile.png │ │ ├── mock-servers.png │ │ ├── modernization.png │ │ ├── modular.png │ │ ├── money.png │ │ ├── monitor.png │ │ ├── monolyth.png │ │ ├── move.png │ │ ├── mqtt.png │ │ ├── multi-cloud.png │ │ ├── multi-region.png │ │ ├── mutations.png │ │ ├── network.png │ │ ├── new.png │ │ ├── newman.png │ │ ├── no-resource.png │ │ ├── notification.png │ │ ├── one-way.png │ │ ├── open-api.png │ │ ├── open.png │ │ ├── opportunities.png │ │ ├── organizations.png │ │ ├── outcome.png │ │ ├── owasp.png │ │ ├── pagination.png │ │ ├── party-celebrate.png │ │ ├── paths.png │ │ ├── pipeline.png │ │ ├── platform.png │ │ ├── port.png │ │ ├── portal.png │ │ ├── postman-api.png │ │ ├── postman-cli.png │ │ ├── postman-repository.png │ │ ├── postman-web-app.png │ │ ├── presentation.png │ │ ├── principles.png │ │ ├── private-workspace.png │ │ ├── product.png │ │ ├── productivity.png │ │ ├── properties info.png │ │ ├── properties.png │ │ ├── protocol-buffers.png │ │ ├── protocols.png │ │ ├── proxies.png │ │ ├── psd2.png │ │ ├── public-link.png │ │ ├── public.png │ │ ├── publish-send.png │ │ ├── quality-review.png │ │ ├── quality.png │ │ ├── rbac.png │ │ ├── rds.png │ │ ├── real-time.png │ │ ├── reduce-cost.png │ │ ├── region.png │ │ ├── reliable.png │ │ ├── repo.png │ │ ├── reporting.png │ │ ├── request-response.png │ │ ├── required.png │ │ ├── rest.png │ │ ├── revenue.png │ │ ├── rfc.png │ │ ├── ride-share.png │ │ ├── rigid.png │ │ ├── roadmap.png │ │ ├── robust.png │ │ ├── role.png │ │ ├── room-with-view.png │ │ ├── routing.png │ │ ├── runner.png │ │ ├── s3.png │ │ ├── saas.png │ │ ├── saber.png │ │ ├── salesforce.png │ │ ├── scale.png │ │ ├── scim.png │ │ ├── scripts.png │ │ ├── sdk.png │ │ ├── search.png │ │ ├── security-misconfiguration.png │ │ ├── security-review.png │ │ ├── security-shield.png │ │ ├── selection.png │ │ ├── self-service.png │ │ ├── seperation.png │ │ ├── serverless.png │ │ ├── servers.png │ │ ├── settings.png │ │ ├── shapes.png │ │ ├── sign-on.png │ │ ├── skeleton-deprecated.png │ │ ├── sla.png │ │ ├── smb.png │ │ ├── solution.png │ │ ├── sound.png │ │ ├── source-control.png │ │ ├── source-of-truth.png │ │ ├── sovereignity.png │ │ ├── spapceship.png │ │ ├── sport.png │ │ ├── stages.png │ │ ├── stakeholders.png │ │ ├── starter.png │ │ ├── storage.png │ │ ├── strategy.png │ │ ├── strict.png │ │ ├── suggest.png │ │ ├── super-admin.png │ │ ├── support.png │ │ ├── switching costs.png │ │ ├── sync.png │ │ ├── target.png │ │ ├── tcp.png │ │ ├── template.png │ │ ├── text-properties.png │ │ ├── then.png │ │ ├── timeline.png │ │ ├── token-scanning.png │ │ ├── top-down.png │ │ ├── trace.png │ │ ├── tractor.png │ │ ├── transporatation.png │ │ ├── trophy.png │ │ ├── trust-center.png │ │ ├── twitter.png │ │ ├── types.png │ │ ├── uber.png │ │ ├── uniform.png │ │ ├── unlimited-PTO.png │ │ ├── upload.png │ │ ├── user-groups.png │ │ ├── variables.png │ │ ├── vendor.png │ │ ├── version.png │ │ ├── video.png │ │ ├── vocabulary-dictionary.png │ │ ├── wand.png │ │ ├── watch.png │ │ ├── web.png │ │ ├── webhooks.png │ │ ├── websocket.png │ │ ├── workflows.png │ │ ├── workspaces.png │ │ └── wsdl.png │ ├── json-schema-icon.png │ ├── new-relic-icon.png │ ├── openapi-icon 2.pxm │ ├── openapi-icon.png │ ├── postman-icon.png │ ├── postman-screenshot.png │ ├── producer-consumer-lifecycle-handoff.png │ ├── producer-consumer-lifecycle.png │ ├── proxy-icon.png │ ├── spectral-icon.png │ ├── visual-studio-icon.png │ ├── websockets-icon.png │ └── youtube-icon.png ├── index.html ├── products │ ├── graphql-design │ │ └── index.html │ ├── grpc-design │ │ └── index.html │ ├── web-code │ │ └── index.html │ ├── web-design │ │ └── index.html │ ├── web-proxy │ │ └── index.html │ └── websockets-design │ │ └── index.html └── stories │ ├── narrative-1 │ └── index.html │ ├── narrative-2 │ └── index.html │ └── narrative-3 │ └── index.html ├── about └── index.html ├── assets ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-grid.rtl.css │ ├── bootstrap-grid.rtl.css.map │ ├── bootstrap-grid.rtl.min.css │ ├── bootstrap-grid.rtl.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap-reboot.rtl.css │ ├── bootstrap-reboot.rtl.css.map │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.min.css.map │ ├── bootstrap-tagsinput.css │ ├── bootstrap-utilities.css │ ├── bootstrap-utilities.css.map │ ├── bootstrap-utilities.min.css │ ├── bootstrap-utilities.min.css.map │ ├── bootstrap-utilities.rtl.css │ ├── bootstrap-utilities.rtl.css.map │ ├── bootstrap-utilities.rtl.min.css │ ├── bootstrap-utilities.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap.rtl.css │ ├── bootstrap.rtl.css.map │ ├── bootstrap.rtl.min.css │ └── bootstrap.rtl.min.css.map └── js │ ├── bootstrap-tagsinput.js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.esm.js │ ├── bootstrap.esm.js.map │ ├── bootstrap.esm.min.js │ ├── bootstrap.esm.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ ├── cookies.js │ └── popper.min.js ├── blueprints ├── access.md ├── ad-hoc-landscape.md ├── advantage.md ├── analytics.md ├── api-aware.md ├── api-early.md ├── api-first.md ├── apis-in-commerce-and-social-media.md ├── application-performance-management-(apm).md ├── applications.md ├── asyncapi-contracts.md ├── asynchronous-interactions.md ├── authentication.md ├── builder.md ├── business-workflows.md ├── buttons.md ├── capabilities.md ├── capability-collections.md ├── category-defining.md ├── centralization.md ├── change-management.md ├── clients.md ├── clouds.md ├── code-annotations.md ├── code-led.md ├── collaborative.md ├── collections.md ├── complete.md ├── composable.md ├── consumer-deploy.md ├── consumer-discover.md ├── consumer-evaluate.md ├── consumer-integrate.md ├── consumer-lifecycle.md ├── consumer-observe.md ├── consumer-test.md ├── continuous-integration-continuous-deployment-(cicd).md ├── contract-testing.md ├── contracts.md ├── design-led.md ├── design-mock-servers.md ├── design-reviews.md ├── digital-resources.md ├── discoverability.md ├── document-checklist.md ├── documentation.md ├── domain-driven-design-(ddd).md ├── education.md ├── enablement.md ├── environments.md ├── expansion.md ├── experiences.md ├── gateway-automation.md ├── gateway-capabilities.md ├── gateway-contracts.md ├── gateway-deployment-patterns.md ├── gateway-differentiators.md ├── gateway-dimensions.md ├── gateway-downstream-protocols.md ├── gateway-extensibility.md ├── gateway-integrations.md ├── gateway-patterns.md ├── gateway-solutions.md ├── gateway-testing.md ├── gateway-upstream-protocols.md ├── gateways.md ├── good-governance.md ├── governance-shape.md ├── graphql.md ├── grpc.md ├── guidelines.md ├── high-level-api-governance.md ├── history-of-web-apis.md ├── how-to-think-about-apis.md ├── industry-interoperability.md ├── integrated-development-environments(ide).md ├── integrations.md ├── internet-of-things-(iot).md ├── jobs-to-be-done.md ├── json-schema.md ├── landscape-mapping.md ├── legacy.md ├── lifecycle-essentials.md ├── low-code-no-code.md ├── low-level-api-governance.md ├── managing-governance.md ├── marketing.md ├── maturity.md ├── microservices.md ├── mobile.md ├── mock-servers.md ├── motion.md ├── observability.md ├── onboarding-collections.md ├── open-source.md ├── open-technologies-standard-support.md ├── openapi-contracts.md ├── operational-interoperability.md ├── organizations.md ├── organizing-your-standards.md ├── owasp-top-10.md ├── partnerships.md ├── patterns.md ├── performance-testing.md ├── platform-api-governance.md ├── platform-capabilities.md ├── platform-level-automation.md ├── platforms.md ├── portals.md ├── postman-open-technologies.md ├── postman-sandbox.md ├── privacy-regulations.md ├── producer-define.md ├── producer-deploy.md ├── producer-design.md ├── producer-develop.md ├── producer-distribute.md ├── producer-lifecycle.md ├── producer-observe.md ├── producer-secure.md ├── producer-testing.md ├── product-management.md ├── productivity.md ├── products.md ├── protocol-buffers.md ├── protocols.md ├── prototype-led.md ├── proxy-led.md ├── public-workspaces.md ├── quality-reviews.md ├── quality.md ├── reference-collections.md ├── regions.md ├── requests.md ├── rest.md ├── roles.md ├── rules.md ├── sales-strategy.md ├── schema-registry.md ├── search.md ├── security-collections.md ├── security-reviews.md ├── shifting-left.md ├── soap.md ├── source-control.md ├── stability.md ├── strategy.md ├── synchronous-interactions.md ├── syncing-your-specs-with-collections.md ├── team-performance.md ├── team-profile.md ├── templates.md ├── test-automation.md ├── testing-landscape.md ├── testing-mock-servers.md ├── the-api-economy.md ├── the-api-moves-to-the-cloud.md ├── the-early-seeds-of-apis.md ├── time-to-first-call.md ├── trust.md ├── usability.md ├── using-apis-across-many-types-of-applications.md ├── variables.md ├── versioning-governance.md ├── versioning.md ├── webhooks.md ├── websockets.md ├── what-is-an-api.md ├── where-are-apis.md ├── who-uses-apis.md ├── why-are-apis-used.md ├── why-do-you-become-api-first.md ├── workspace-checklist.md ├── workspaces.md ├── world-building.md └── wsdl.md ├── cname ├── contact └── index.html ├── gemfile ├── gitignore ├── images ├── aws-api-gateway-icon.png ├── aws-lambda-icon.jpg ├── aws-lambda-icon.png ├── blueprint.png ├── blueprints │ ├── .DS_Store │ ├── always-investing-in-standards.jpeg │ ├── an-api-design-review.jpeg │ ├── anatomy-of-individual-api-requests.jpeg │ ├── api-design-first.jpeg │ ├── api-design-first.jpg │ ├── api-documentation-is-fundamental.jpeg │ ├── api-regulation-is-here.jpeg │ ├── api-workspaces-as-the-foundation.jpeg │ ├── applications-and-their-apis.png │ ├── bringing-more-observability-to-operations.jpeg │ ├── build-a-business-workflow.jpeg │ ├── community-theatrical-production.jpeg │ ├── creating-a-new-graphql-api.jpeg │ ├── defining-capabilities-using-collections.jpeg │ ├── discovery-as-the-default.jpeg │ ├── fundamental-api-testing.jpeg │ ├── generate-collection-from-mobile-application.jpeg │ ├── generate-collection-from-web-application.png │ ├── generate-openapi-using-code-annotations.png │ ├── having-an-api-strategy.jpeg │ ├── high-level-api-governance.jpeg │ ├── import-wsdl-for-an-existing-soap-web-service.png │ ├── improving-team-productivity.png │ ├── internal-landscape-mapping.jpeg │ ├── investing-in-test-automation.jpeg │ ├── leveraging-public-workspaces.jpeg │ ├── low-level-api-governance.jpeg │ ├── making-quality-a-ubiquitous-part-of-operations.jpeg │ ├── manually-define-collection-for-existing-api.jpeg │ ├── more-organizational-visibility.jpeg │ ├── new-api-using-the-asyncapi-specification.jpeg │ ├── new-api-using-the-openapi-specification.jpg │ ├── platform-api-governance.jpeg │ ├── prioritizing-api-first.jpeg │ ├── prototyping-a-new-api-using-a-postman-collection.jpeg │ ├── providing-onboarding-collections.png │ ├── public-teams-workspaces-and-apis.jpeg │ ├── putting-security-in-the-hands-of-developers-with-collections.jpeg │ ├── starting-with-a-reference-collection.jpeg │ ├── the-base-of-the-api-lifecycle.jpeg │ ├── versioning-governance.jpeg │ ├── why-openapi-matters-to-operations.jpeg │ └── workspace-standardization.jpeg ├── code-first-icon.png ├── code-first-icon.pxm ├── collection-icon.png ├── confluence-icon.png ├── design-first-icon.png ├── design-first-icon.pxm ├── github-icon.png ├── github-icon.pxm ├── graphql-icon.png ├── grpc-icon.png ├── grpc-icon.pxm ├── icons │ ├── Excellence.png │ ├── Operations.png │ ├── SOA.png │ ├── access-control.png │ ├── actions.png │ ├── activity.png │ ├── adaptive.png │ ├── aggregation.png │ ├── agility.png │ ├── agriculture.png │ ├── ai.png │ ├── alcohol.png │ ├── algorithm.png │ ├── alien.png │ ├── android.png │ ├── annotations.png │ ├── api-aware.png │ ├── api-early.png │ ├── api-first.png │ ├── api.png │ ├── apm.png │ ├── archway.png │ ├── arpanet.png │ ├── artifacts.png │ ├── async-api.png │ ├── asynchronous.png │ ├── auth.png │ ├── automation.png │ ├── availability.png │ ├── aws.png │ ├── binding.png │ ├── bottom-up.png │ ├── bounded-context.png │ ├── broken-function-auth.png │ ├── broken-object-auth.png │ ├── broken-user-auth.png │ ├── browse.png │ ├── bug.png │ ├── button.png │ ├── caching.png │ ├── camp.png │ ├── capabilities.png │ ├── cart.png │ ├── catalog.png │ ├── ccpa.png │ ├── centralization.png │ ├── certification.png │ ├── champion.png │ ├── change.png │ ├── channels.png │ ├── ci-cd.png │ ├── city.png │ ├── cloud API.png │ ├── cloud.png │ ├── code-generator.png │ ├── collaborate.png │ ├── collections.png │ ├── community-love.png │ ├── components.png │ ├── contract-testing.png │ ├── contract.png │ ├── control.png │ ├── corba.png │ ├── coverage.png │ ├── customer-service.png │ ├── dashboard.png │ ├── data-mangement.png │ ├── data.png │ ├── database.png │ ├── demonstrate.png │ ├── deploy.png │ ├── description.png │ ├── desktop.png │ ├── develop.png │ ├── device.png │ ├── direction.png │ ├── discovery.png │ ├── disperse.png │ ├── dns.png │ ├── document.png │ ├── documentation.png │ ├── domain-capture.png │ ├── doordash.png │ ├── drizzly.png │ ├── eacade.png │ ├── ebay.png │ ├── ec2.png │ ├── edi.png │ ├── editable.png │ ├── education.png │ ├── enable.png │ ├── encryption.png │ ├── energy.png │ ├── engagement.png │ ├── engineering.png │ ├── enterprise.png │ ├── environment.png │ ├── event-driven.png │ ├── events.png │ ├── example.png │ ├── excessive-data-exposure.png │ ├── execute.png │ ├── experiment.png │ ├── expertise.png │ ├── explore.png │ ├── export-package.png │ ├── extension.png │ ├── external.png │ ├── facebook.png │ ├── federated.png │ ├── feedback.png │ ├── fhir.png │ ├── finance.png │ ├── flickr.png │ ├── folder.png │ ├── food.png │ ├── forking.png │ ├── forks.png │ ├── format.png │ ├── forms.png │ ├── fragments.png │ ├── framework.png │ ├── ftp.png │ ├── gateway.png │ ├── gdpr.png │ ├── git.png │ ├── given.png │ ├── governance.png │ ├── graphql.png │ ├── grocery delivery.png │ ├── group.png │ ├── growth.png │ ├── grpc.png │ ├── grubhub.png │ ├── header.png │ ├── healthcare.png │ ├── hierarchy.png │ ├── hotspot.png │ ├── http-2.png │ ├── http-3.png │ ├── http-request.png │ ├── http.png │ ├── iana.png │ ├── image.png │ ├── individual.png │ ├── industry.png │ ├── info.png │ ├── infrastructure.png │ ├── injection.png │ ├── innovation.png │ ├── instacart.png │ ├── integrated-development.png │ ├── integration.png │ ├── intelligence.png │ ├── interceptor.png │ ├── interface.png │ ├── internal.png │ ├── interoperability.png │ ├── iphone.png │ ├── issues.png │ ├── iterate.png │ ├── json-schema.png │ ├── json.png │ ├── language-compatibility.png │ ├── latency.png │ ├── leader.png │ ├── leagal.png │ ├── learning center.png │ ├── lifecycle.png │ ├── log-checklist.png │ ├── log.png │ ├── manufacture.png │ ├── marketing.png │ ├── mass-dristribution.png │ ├── menu.png │ ├── message-type.png │ ├── message.png │ ├── methods.png │ ├── metrics-charts.png │ ├── microservices.png │ ├── migrate.png │ ├── mobile.png │ ├── mock-servers.png │ ├── modernization.png │ ├── modular.png │ ├── money.png │ ├── monitor.png │ ├── monolyth.png │ ├── move.png │ ├── mqtt.png │ ├── multi-cloud.png │ ├── multi-region.png │ ├── mutations.png │ ├── network.png │ ├── new.png │ ├── newman.png │ ├── no-resource.png │ ├── notification.png │ ├── one-way.png │ ├── open-api.png │ ├── open.png │ ├── opportunities.png │ ├── organizations.png │ ├── outcome.png │ ├── owasp.png │ ├── pagination.png │ ├── party-celebrate.png │ ├── paths.png │ ├── pipeline.png │ ├── platform.png │ ├── port.png │ ├── portal.png │ ├── postman-api.png │ ├── postman-cli.png │ ├── postman-repository.png │ ├── postman-web-app.png │ ├── presentation.png │ ├── principles.png │ ├── private-workspace.png │ ├── product.png │ ├── productivity.png │ ├── properties info.png │ ├── properties.png │ ├── protocol-buffers.png │ ├── protocols.png │ ├── proxies.png │ ├── psd2.png │ ├── public-link.png │ ├── public.png │ ├── publish-send.png │ ├── quality-review.png │ ├── quality.png │ ├── rbac.png │ ├── rds.png │ ├── real-time.png │ ├── reduce-cost.png │ ├── region.png │ ├── reliable.png │ ├── repo.png │ ├── reporting.png │ ├── request-response.png │ ├── required.png │ ├── rest.png │ ├── revenue.png │ ├── rfc.png │ ├── ride-share.png │ ├── rigid.png │ ├── roadmap.png │ ├── robust.png │ ├── role.png │ ├── room-with-view.png │ ├── routing.png │ ├── runner.png │ ├── s3.png │ ├── saas.png │ ├── saber.png │ ├── salesforce.png │ ├── scale.png │ ├── scim.png │ ├── scripts.png │ ├── sdk.png │ ├── search.png │ ├── security-misconfiguration.png │ ├── security-review.png │ ├── security-shield.png │ ├── selection.png │ ├── self-service.png │ ├── seperation.png │ ├── serverless.png │ ├── servers.png │ ├── settings.png │ ├── shapes.png │ ├── sign-on.png │ ├── skeleton-deprecated.png │ ├── sla.png │ ├── smb.png │ ├── solution.png │ ├── sound.png │ ├── source-control.png │ ├── source-of-truth.png │ ├── sovereignity.png │ ├── spapceship.png │ ├── sport.png │ ├── stages.png │ ├── stakeholders.png │ ├── starter.png │ ├── storage.png │ ├── strategy.png │ ├── strict.png │ ├── suggest.png │ ├── super-admin.png │ ├── support.png │ ├── switching costs.png │ ├── sync.png │ ├── target.png │ ├── tcp.png │ ├── template.png │ ├── text-properties.png │ ├── then.png │ ├── timeline.png │ ├── token-scanning.png │ ├── top-down.png │ ├── trace.png │ ├── tractor.png │ ├── transporatation.png │ ├── trophy.png │ ├── trust-center.png │ ├── twitter.png │ ├── types.png │ ├── uber.png │ ├── uniform.png │ ├── unlimited-PTO.png │ ├── upload.png │ ├── user-groups.png │ ├── variables.png │ ├── vendor.png │ ├── version.png │ ├── video.png │ ├── vocabulary-dictionary.png │ ├── wand.png │ ├── watch.png │ ├── web.png │ ├── webhooks.png │ ├── websocket.png │ ├── workflows.png │ ├── workspaces.png │ └── wsdl.png ├── json-schema-icon.png ├── new-relic-icon.png ├── openapi-icon 2.pxm ├── openapi-icon.png ├── postman-icon.png ├── postman-screenshot.png ├── producer-consumer-lifecycle-handoff.png ├── producer-consumer-lifecycle.png ├── proxy-icon.png ├── spectral-icon.png ├── visual-studio-icon.png ├── websockets-icon.png └── youtube-icon.png ├── index.html ├── products ├── graphql-design │ └── index.html ├── grpc-design │ └── index.html ├── web-code │ └── index.html ├── web-design │ └── index.html ├── web-proxy │ └── index.html └── websockets-design │ └── index.html └── stories ├── narrative-1 └── index.html ├── narrative-2 └── index.html └── narrative-3 └── index.html /CNAME: -------------------------------------------------------------------------------- 1 | apis.how -------------------------------------------------------------------------------- /_site/blueprints/consumer-lifecycle-develop.md: -------------------------------------------------------------------------------- 1 | # Consumer Lifecycle - Develop 2 | -------------------------------------------------------------------------------- /_site/blueprints/education.md: -------------------------------------------------------------------------------- 1 | # Education 2 | -------------------------------------------------------------------------------- /_site/blueprints/governance-design.md: -------------------------------------------------------------------------------- 1 | # Design Governance 2 | -------------------------------------------------------------------------------- /_site/blueprints/quality.md: -------------------------------------------------------------------------------- 1 | # Quality 2 | -------------------------------------------------------------------------------- /_site/blueprints/regulations.md: -------------------------------------------------------------------------------- 1 | # Regulations 2 | -------------------------------------------------------------------------------- /_site/blueprints/team-profile.md: -------------------------------------------------------------------------------- 1 | # Team Profile 2 | -------------------------------------------------------------------------------- /_site/gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages', group: :jekyll_plugins 3 | -------------------------------------------------------------------------------- /_site/gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | gemfile 3 | Gemfile.lock 4 | _site -------------------------------------------------------------------------------- /_site/images/aws-api-gateway-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/aws-api-gateway-icon.png -------------------------------------------------------------------------------- /_site/images/aws-lambda-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/aws-lambda-icon.jpg -------------------------------------------------------------------------------- /_site/images/aws-lambda-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/aws-lambda-icon.png -------------------------------------------------------------------------------- /_site/images/blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/blueprint.png -------------------------------------------------------------------------------- /_site/images/blueprints/an-api-design-review.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/blueprints/an-api-design-review.jpeg -------------------------------------------------------------------------------- /_site/images/blueprints/api-design-first.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/blueprints/api-design-first.jpeg -------------------------------------------------------------------------------- /_site/images/blueprints/api-design-first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/blueprints/api-design-first.jpg -------------------------------------------------------------------------------- /_site/images/blueprints/versioning-governance.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/blueprints/versioning-governance.jpeg -------------------------------------------------------------------------------- /_site/images/code-first-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/code-first-icon.png -------------------------------------------------------------------------------- /_site/images/code-first-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/code-first-icon.pxm -------------------------------------------------------------------------------- /_site/images/collection-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/collection-icon.png -------------------------------------------------------------------------------- /_site/images/confluence-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/confluence-icon.png -------------------------------------------------------------------------------- /_site/images/design-first-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/design-first-icon.png -------------------------------------------------------------------------------- /_site/images/design-first-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/design-first-icon.pxm -------------------------------------------------------------------------------- /_site/images/github-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/github-icon.png -------------------------------------------------------------------------------- /_site/images/github-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/github-icon.pxm -------------------------------------------------------------------------------- /_site/images/graphql-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/graphql-icon.png -------------------------------------------------------------------------------- /_site/images/grpc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/grpc-icon.png -------------------------------------------------------------------------------- /_site/images/grpc-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/grpc-icon.pxm -------------------------------------------------------------------------------- /_site/images/icons/Excellence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/Excellence.png -------------------------------------------------------------------------------- /_site/images/icons/Operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/Operations.png -------------------------------------------------------------------------------- /_site/images/icons/SOA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/SOA.png -------------------------------------------------------------------------------- /_site/images/icons/access-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/access-control.png -------------------------------------------------------------------------------- /_site/images/icons/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/actions.png -------------------------------------------------------------------------------- /_site/images/icons/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/activity.png -------------------------------------------------------------------------------- /_site/images/icons/adaptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/adaptive.png -------------------------------------------------------------------------------- /_site/images/icons/aggregation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/aggregation.png -------------------------------------------------------------------------------- /_site/images/icons/agility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/agility.png -------------------------------------------------------------------------------- /_site/images/icons/agriculture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/agriculture.png -------------------------------------------------------------------------------- /_site/images/icons/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/ai.png -------------------------------------------------------------------------------- /_site/images/icons/alcohol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/alcohol.png -------------------------------------------------------------------------------- /_site/images/icons/algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/algorithm.png -------------------------------------------------------------------------------- /_site/images/icons/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/alien.png -------------------------------------------------------------------------------- /_site/images/icons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/android.png -------------------------------------------------------------------------------- /_site/images/icons/annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/annotations.png -------------------------------------------------------------------------------- /_site/images/icons/api-aware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/api-aware.png -------------------------------------------------------------------------------- /_site/images/icons/api-early.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/api-early.png -------------------------------------------------------------------------------- /_site/images/icons/api-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/api-first.png -------------------------------------------------------------------------------- /_site/images/icons/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/api.png -------------------------------------------------------------------------------- /_site/images/icons/apm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/apm.png -------------------------------------------------------------------------------- /_site/images/icons/archway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/archway.png -------------------------------------------------------------------------------- /_site/images/icons/arpanet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/arpanet.png -------------------------------------------------------------------------------- /_site/images/icons/artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/artifacts.png -------------------------------------------------------------------------------- /_site/images/icons/async-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/async-api.png -------------------------------------------------------------------------------- /_site/images/icons/asynchronous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/asynchronous.png -------------------------------------------------------------------------------- /_site/images/icons/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/auth.png -------------------------------------------------------------------------------- /_site/images/icons/automation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/automation.png -------------------------------------------------------------------------------- /_site/images/icons/availability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/availability.png -------------------------------------------------------------------------------- /_site/images/icons/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/aws.png -------------------------------------------------------------------------------- /_site/images/icons/binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/binding.png -------------------------------------------------------------------------------- /_site/images/icons/bottom-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/bottom-up.png -------------------------------------------------------------------------------- /_site/images/icons/bounded-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/bounded-context.png -------------------------------------------------------------------------------- /_site/images/icons/broken-function-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/broken-function-auth.png -------------------------------------------------------------------------------- /_site/images/icons/broken-object-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/broken-object-auth.png -------------------------------------------------------------------------------- /_site/images/icons/broken-user-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/broken-user-auth.png -------------------------------------------------------------------------------- /_site/images/icons/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/browse.png -------------------------------------------------------------------------------- /_site/images/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/bug.png -------------------------------------------------------------------------------- /_site/images/icons/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/button.png -------------------------------------------------------------------------------- /_site/images/icons/caching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/caching.png -------------------------------------------------------------------------------- /_site/images/icons/camp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/camp.png -------------------------------------------------------------------------------- /_site/images/icons/capabilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/capabilities.png -------------------------------------------------------------------------------- /_site/images/icons/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/cart.png -------------------------------------------------------------------------------- /_site/images/icons/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/catalog.png -------------------------------------------------------------------------------- /_site/images/icons/ccpa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/ccpa.png -------------------------------------------------------------------------------- /_site/images/icons/centralization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/centralization.png -------------------------------------------------------------------------------- /_site/images/icons/certification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/certification.png -------------------------------------------------------------------------------- /_site/images/icons/champion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/champion.png -------------------------------------------------------------------------------- /_site/images/icons/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/change.png -------------------------------------------------------------------------------- /_site/images/icons/channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/channels.png -------------------------------------------------------------------------------- /_site/images/icons/ci-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/ci-cd.png -------------------------------------------------------------------------------- /_site/images/icons/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/city.png -------------------------------------------------------------------------------- /_site/images/icons/cloud API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/cloud API.png -------------------------------------------------------------------------------- /_site/images/icons/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/cloud.png -------------------------------------------------------------------------------- /_site/images/icons/code-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/code-generator.png -------------------------------------------------------------------------------- /_site/images/icons/collaborate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/collaborate.png -------------------------------------------------------------------------------- /_site/images/icons/collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/collections.png -------------------------------------------------------------------------------- /_site/images/icons/community-love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/community-love.png -------------------------------------------------------------------------------- /_site/images/icons/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/components.png -------------------------------------------------------------------------------- /_site/images/icons/contract-testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/contract-testing.png -------------------------------------------------------------------------------- /_site/images/icons/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/contract.png -------------------------------------------------------------------------------- /_site/images/icons/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/control.png -------------------------------------------------------------------------------- /_site/images/icons/corba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/corba.png -------------------------------------------------------------------------------- /_site/images/icons/coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/coverage.png -------------------------------------------------------------------------------- /_site/images/icons/customer-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/customer-service.png -------------------------------------------------------------------------------- /_site/images/icons/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/dashboard.png -------------------------------------------------------------------------------- /_site/images/icons/data-mangement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/data-mangement.png -------------------------------------------------------------------------------- /_site/images/icons/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/data.png -------------------------------------------------------------------------------- /_site/images/icons/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/database.png -------------------------------------------------------------------------------- /_site/images/icons/demonstrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/demonstrate.png -------------------------------------------------------------------------------- /_site/images/icons/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/deploy.png -------------------------------------------------------------------------------- /_site/images/icons/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/description.png -------------------------------------------------------------------------------- /_site/images/icons/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/desktop.png -------------------------------------------------------------------------------- /_site/images/icons/develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/develop.png -------------------------------------------------------------------------------- /_site/images/icons/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/device.png -------------------------------------------------------------------------------- /_site/images/icons/direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/direction.png -------------------------------------------------------------------------------- /_site/images/icons/discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/discovery.png -------------------------------------------------------------------------------- /_site/images/icons/disperse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/disperse.png -------------------------------------------------------------------------------- /_site/images/icons/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/dns.png -------------------------------------------------------------------------------- /_site/images/icons/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/document.png -------------------------------------------------------------------------------- /_site/images/icons/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/documentation.png -------------------------------------------------------------------------------- /_site/images/icons/domain-capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/domain-capture.png -------------------------------------------------------------------------------- /_site/images/icons/doordash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/doordash.png -------------------------------------------------------------------------------- /_site/images/icons/drizzly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/drizzly.png -------------------------------------------------------------------------------- /_site/images/icons/eacade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/eacade.png -------------------------------------------------------------------------------- /_site/images/icons/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/ebay.png -------------------------------------------------------------------------------- /_site/images/icons/ec2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/ec2.png -------------------------------------------------------------------------------- /_site/images/icons/edi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/edi.png -------------------------------------------------------------------------------- /_site/images/icons/editable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/editable.png -------------------------------------------------------------------------------- /_site/images/icons/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/education.png -------------------------------------------------------------------------------- /_site/images/icons/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/enable.png -------------------------------------------------------------------------------- /_site/images/icons/encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/encryption.png -------------------------------------------------------------------------------- /_site/images/icons/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/energy.png -------------------------------------------------------------------------------- /_site/images/icons/engagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/engagement.png -------------------------------------------------------------------------------- /_site/images/icons/engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/engineering.png -------------------------------------------------------------------------------- /_site/images/icons/enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/enterprise.png -------------------------------------------------------------------------------- /_site/images/icons/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/environment.png -------------------------------------------------------------------------------- /_site/images/icons/event-driven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/event-driven.png -------------------------------------------------------------------------------- /_site/images/icons/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/events.png -------------------------------------------------------------------------------- /_site/images/icons/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/example.png -------------------------------------------------------------------------------- /_site/images/icons/excessive-data-exposure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/excessive-data-exposure.png -------------------------------------------------------------------------------- /_site/images/icons/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/execute.png -------------------------------------------------------------------------------- /_site/images/icons/experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/experiment.png -------------------------------------------------------------------------------- /_site/images/icons/expertise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/expertise.png -------------------------------------------------------------------------------- /_site/images/icons/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/explore.png -------------------------------------------------------------------------------- /_site/images/icons/export-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/export-package.png -------------------------------------------------------------------------------- /_site/images/icons/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/extension.png -------------------------------------------------------------------------------- /_site/images/icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/external.png -------------------------------------------------------------------------------- /_site/images/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/facebook.png -------------------------------------------------------------------------------- /_site/images/icons/federated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/federated.png -------------------------------------------------------------------------------- /_site/images/icons/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/feedback.png -------------------------------------------------------------------------------- /_site/images/icons/fhir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/fhir.png -------------------------------------------------------------------------------- /_site/images/icons/finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/finance.png -------------------------------------------------------------------------------- /_site/images/icons/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/flickr.png -------------------------------------------------------------------------------- /_site/images/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/folder.png -------------------------------------------------------------------------------- /_site/images/icons/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/food.png -------------------------------------------------------------------------------- /_site/images/icons/forking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/forking.png -------------------------------------------------------------------------------- /_site/images/icons/forks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/forks.png -------------------------------------------------------------------------------- /_site/images/icons/format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/format.png -------------------------------------------------------------------------------- /_site/images/icons/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/forms.png -------------------------------------------------------------------------------- /_site/images/icons/fragments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/fragments.png -------------------------------------------------------------------------------- /_site/images/icons/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/framework.png -------------------------------------------------------------------------------- /_site/images/icons/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/ftp.png -------------------------------------------------------------------------------- /_site/images/icons/gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/gateway.png -------------------------------------------------------------------------------- /_site/images/icons/gdpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/gdpr.png -------------------------------------------------------------------------------- /_site/images/icons/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/git.png -------------------------------------------------------------------------------- /_site/images/icons/given.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/given.png -------------------------------------------------------------------------------- /_site/images/icons/governance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/governance.png -------------------------------------------------------------------------------- /_site/images/icons/graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/graphql.png -------------------------------------------------------------------------------- /_site/images/icons/grocery delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/grocery delivery.png -------------------------------------------------------------------------------- /_site/images/icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/group.png -------------------------------------------------------------------------------- /_site/images/icons/growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/growth.png -------------------------------------------------------------------------------- /_site/images/icons/grpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/grpc.png -------------------------------------------------------------------------------- /_site/images/icons/grubhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/grubhub.png -------------------------------------------------------------------------------- /_site/images/icons/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/header.png -------------------------------------------------------------------------------- /_site/images/icons/healthcare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/healthcare.png -------------------------------------------------------------------------------- /_site/images/icons/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/hierarchy.png -------------------------------------------------------------------------------- /_site/images/icons/hotspot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/hotspot.png -------------------------------------------------------------------------------- /_site/images/icons/http-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/http-2.png -------------------------------------------------------------------------------- /_site/images/icons/http-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/http-3.png -------------------------------------------------------------------------------- /_site/images/icons/http-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/http-request.png -------------------------------------------------------------------------------- /_site/images/icons/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/http.png -------------------------------------------------------------------------------- /_site/images/icons/iana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/iana.png -------------------------------------------------------------------------------- /_site/images/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/image.png -------------------------------------------------------------------------------- /_site/images/icons/individual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/individual.png -------------------------------------------------------------------------------- /_site/images/icons/industry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/industry.png -------------------------------------------------------------------------------- /_site/images/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/info.png -------------------------------------------------------------------------------- /_site/images/icons/infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/infrastructure.png -------------------------------------------------------------------------------- /_site/images/icons/injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/injection.png -------------------------------------------------------------------------------- /_site/images/icons/innovation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/innovation.png -------------------------------------------------------------------------------- /_site/images/icons/instacart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/instacart.png -------------------------------------------------------------------------------- /_site/images/icons/integrated-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/integrated-development.png -------------------------------------------------------------------------------- /_site/images/icons/integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/integration.png -------------------------------------------------------------------------------- /_site/images/icons/intelligence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/intelligence.png -------------------------------------------------------------------------------- /_site/images/icons/interceptor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/interceptor.png -------------------------------------------------------------------------------- /_site/images/icons/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/interface.png -------------------------------------------------------------------------------- /_site/images/icons/internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/internal.png -------------------------------------------------------------------------------- /_site/images/icons/interoperability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/interoperability.png -------------------------------------------------------------------------------- /_site/images/icons/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/iphone.png -------------------------------------------------------------------------------- /_site/images/icons/issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/issues.png -------------------------------------------------------------------------------- /_site/images/icons/iterate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/iterate.png -------------------------------------------------------------------------------- /_site/images/icons/json-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/json-schema.png -------------------------------------------------------------------------------- /_site/images/icons/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/json.png -------------------------------------------------------------------------------- /_site/images/icons/language-compatibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/language-compatibility.png -------------------------------------------------------------------------------- /_site/images/icons/latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/latency.png -------------------------------------------------------------------------------- /_site/images/icons/leader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/leader.png -------------------------------------------------------------------------------- /_site/images/icons/leagal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/leagal.png -------------------------------------------------------------------------------- /_site/images/icons/learning center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/learning center.png -------------------------------------------------------------------------------- /_site/images/icons/lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/lifecycle.png -------------------------------------------------------------------------------- /_site/images/icons/log-checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/log-checklist.png -------------------------------------------------------------------------------- /_site/images/icons/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/log.png -------------------------------------------------------------------------------- /_site/images/icons/manufacture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/manufacture.png -------------------------------------------------------------------------------- /_site/images/icons/marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/marketing.png -------------------------------------------------------------------------------- /_site/images/icons/mass-dristribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/mass-dristribution.png -------------------------------------------------------------------------------- /_site/images/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/menu.png -------------------------------------------------------------------------------- /_site/images/icons/message-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/message-type.png -------------------------------------------------------------------------------- /_site/images/icons/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/message.png -------------------------------------------------------------------------------- /_site/images/icons/methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/methods.png -------------------------------------------------------------------------------- /_site/images/icons/metrics-charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/metrics-charts.png -------------------------------------------------------------------------------- /_site/images/icons/microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/microservices.png -------------------------------------------------------------------------------- /_site/images/icons/migrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/migrate.png -------------------------------------------------------------------------------- /_site/images/icons/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/mobile.png -------------------------------------------------------------------------------- /_site/images/icons/mock-servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/mock-servers.png -------------------------------------------------------------------------------- /_site/images/icons/modernization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/modernization.png -------------------------------------------------------------------------------- /_site/images/icons/modular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/modular.png -------------------------------------------------------------------------------- /_site/images/icons/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/money.png -------------------------------------------------------------------------------- /_site/images/icons/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/monitor.png -------------------------------------------------------------------------------- /_site/images/icons/monolyth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/monolyth.png -------------------------------------------------------------------------------- /_site/images/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/move.png -------------------------------------------------------------------------------- /_site/images/icons/mqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/mqtt.png -------------------------------------------------------------------------------- /_site/images/icons/multi-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/multi-cloud.png -------------------------------------------------------------------------------- /_site/images/icons/multi-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/multi-region.png -------------------------------------------------------------------------------- /_site/images/icons/mutations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/mutations.png -------------------------------------------------------------------------------- /_site/images/icons/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/network.png -------------------------------------------------------------------------------- /_site/images/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/new.png -------------------------------------------------------------------------------- /_site/images/icons/newman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/newman.png -------------------------------------------------------------------------------- /_site/images/icons/no-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/no-resource.png -------------------------------------------------------------------------------- /_site/images/icons/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/notification.png -------------------------------------------------------------------------------- /_site/images/icons/one-way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/one-way.png -------------------------------------------------------------------------------- /_site/images/icons/open-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/open-api.png -------------------------------------------------------------------------------- /_site/images/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/open.png -------------------------------------------------------------------------------- /_site/images/icons/opportunities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/opportunities.png -------------------------------------------------------------------------------- /_site/images/icons/organizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/organizations.png -------------------------------------------------------------------------------- /_site/images/icons/outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/outcome.png -------------------------------------------------------------------------------- /_site/images/icons/owasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/owasp.png -------------------------------------------------------------------------------- /_site/images/icons/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/pagination.png -------------------------------------------------------------------------------- /_site/images/icons/party-celebrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/party-celebrate.png -------------------------------------------------------------------------------- /_site/images/icons/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/paths.png -------------------------------------------------------------------------------- /_site/images/icons/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/pipeline.png -------------------------------------------------------------------------------- /_site/images/icons/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/platform.png -------------------------------------------------------------------------------- /_site/images/icons/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/port.png -------------------------------------------------------------------------------- /_site/images/icons/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/portal.png -------------------------------------------------------------------------------- /_site/images/icons/postman-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/postman-api.png -------------------------------------------------------------------------------- /_site/images/icons/postman-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/postman-cli.png -------------------------------------------------------------------------------- /_site/images/icons/postman-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/postman-repository.png -------------------------------------------------------------------------------- /_site/images/icons/postman-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/postman-web-app.png -------------------------------------------------------------------------------- /_site/images/icons/presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/presentation.png -------------------------------------------------------------------------------- /_site/images/icons/principles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/principles.png -------------------------------------------------------------------------------- /_site/images/icons/private-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/private-workspace.png -------------------------------------------------------------------------------- /_site/images/icons/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/product.png -------------------------------------------------------------------------------- /_site/images/icons/productivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/productivity.png -------------------------------------------------------------------------------- /_site/images/icons/properties info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/properties info.png -------------------------------------------------------------------------------- /_site/images/icons/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/properties.png -------------------------------------------------------------------------------- /_site/images/icons/protocol-buffers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/protocol-buffers.png -------------------------------------------------------------------------------- /_site/images/icons/protocols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/protocols.png -------------------------------------------------------------------------------- /_site/images/icons/proxies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/proxies.png -------------------------------------------------------------------------------- /_site/images/icons/psd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/psd2.png -------------------------------------------------------------------------------- /_site/images/icons/public-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/public-link.png -------------------------------------------------------------------------------- /_site/images/icons/public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/public.png -------------------------------------------------------------------------------- /_site/images/icons/publish-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/publish-send.png -------------------------------------------------------------------------------- /_site/images/icons/quality-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/quality-review.png -------------------------------------------------------------------------------- /_site/images/icons/quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/quality.png -------------------------------------------------------------------------------- /_site/images/icons/rbac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/rbac.png -------------------------------------------------------------------------------- /_site/images/icons/rds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/rds.png -------------------------------------------------------------------------------- /_site/images/icons/real-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/real-time.png -------------------------------------------------------------------------------- /_site/images/icons/reduce-cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/reduce-cost.png -------------------------------------------------------------------------------- /_site/images/icons/region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/region.png -------------------------------------------------------------------------------- /_site/images/icons/reliable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/reliable.png -------------------------------------------------------------------------------- /_site/images/icons/repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/repo.png -------------------------------------------------------------------------------- /_site/images/icons/reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/reporting.png -------------------------------------------------------------------------------- /_site/images/icons/request-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/request-response.png -------------------------------------------------------------------------------- /_site/images/icons/required.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/required.png -------------------------------------------------------------------------------- /_site/images/icons/rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/rest.png -------------------------------------------------------------------------------- /_site/images/icons/revenue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/revenue.png -------------------------------------------------------------------------------- /_site/images/icons/rfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/rfc.png -------------------------------------------------------------------------------- /_site/images/icons/ride-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/ride-share.png -------------------------------------------------------------------------------- /_site/images/icons/rigid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/rigid.png -------------------------------------------------------------------------------- /_site/images/icons/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/roadmap.png -------------------------------------------------------------------------------- /_site/images/icons/robust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/robust.png -------------------------------------------------------------------------------- /_site/images/icons/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/role.png -------------------------------------------------------------------------------- /_site/images/icons/room-with-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/room-with-view.png -------------------------------------------------------------------------------- /_site/images/icons/routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/routing.png -------------------------------------------------------------------------------- /_site/images/icons/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/runner.png -------------------------------------------------------------------------------- /_site/images/icons/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/s3.png -------------------------------------------------------------------------------- /_site/images/icons/saas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/saas.png -------------------------------------------------------------------------------- /_site/images/icons/saber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/saber.png -------------------------------------------------------------------------------- /_site/images/icons/salesforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/salesforce.png -------------------------------------------------------------------------------- /_site/images/icons/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/scale.png -------------------------------------------------------------------------------- /_site/images/icons/scim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/scim.png -------------------------------------------------------------------------------- /_site/images/icons/scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/scripts.png -------------------------------------------------------------------------------- /_site/images/icons/sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/sdk.png -------------------------------------------------------------------------------- /_site/images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/search.png -------------------------------------------------------------------------------- /_site/images/icons/security-misconfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/security-misconfiguration.png -------------------------------------------------------------------------------- /_site/images/icons/security-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/security-review.png -------------------------------------------------------------------------------- /_site/images/icons/security-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/security-shield.png -------------------------------------------------------------------------------- /_site/images/icons/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/selection.png -------------------------------------------------------------------------------- /_site/images/icons/self-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/self-service.png -------------------------------------------------------------------------------- /_site/images/icons/seperation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/seperation.png -------------------------------------------------------------------------------- /_site/images/icons/serverless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/serverless.png -------------------------------------------------------------------------------- /_site/images/icons/servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/servers.png -------------------------------------------------------------------------------- /_site/images/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/settings.png -------------------------------------------------------------------------------- /_site/images/icons/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/shapes.png -------------------------------------------------------------------------------- /_site/images/icons/sign-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/sign-on.png -------------------------------------------------------------------------------- /_site/images/icons/skeleton-deprecated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/skeleton-deprecated.png -------------------------------------------------------------------------------- /_site/images/icons/sla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/sla.png -------------------------------------------------------------------------------- /_site/images/icons/smb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/smb.png -------------------------------------------------------------------------------- /_site/images/icons/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/solution.png -------------------------------------------------------------------------------- /_site/images/icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/sound.png -------------------------------------------------------------------------------- /_site/images/icons/source-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/source-control.png -------------------------------------------------------------------------------- /_site/images/icons/source-of-truth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/source-of-truth.png -------------------------------------------------------------------------------- /_site/images/icons/sovereignity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/sovereignity.png -------------------------------------------------------------------------------- /_site/images/icons/spapceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/spapceship.png -------------------------------------------------------------------------------- /_site/images/icons/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/sport.png -------------------------------------------------------------------------------- /_site/images/icons/stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/stages.png -------------------------------------------------------------------------------- /_site/images/icons/stakeholders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/stakeholders.png -------------------------------------------------------------------------------- /_site/images/icons/starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/starter.png -------------------------------------------------------------------------------- /_site/images/icons/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/storage.png -------------------------------------------------------------------------------- /_site/images/icons/strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/strategy.png -------------------------------------------------------------------------------- /_site/images/icons/strict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/strict.png -------------------------------------------------------------------------------- /_site/images/icons/suggest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/suggest.png -------------------------------------------------------------------------------- /_site/images/icons/super-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/super-admin.png -------------------------------------------------------------------------------- /_site/images/icons/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/support.png -------------------------------------------------------------------------------- /_site/images/icons/switching costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/switching costs.png -------------------------------------------------------------------------------- /_site/images/icons/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/sync.png -------------------------------------------------------------------------------- /_site/images/icons/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/target.png -------------------------------------------------------------------------------- /_site/images/icons/tcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/tcp.png -------------------------------------------------------------------------------- /_site/images/icons/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/template.png -------------------------------------------------------------------------------- /_site/images/icons/text-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/text-properties.png -------------------------------------------------------------------------------- /_site/images/icons/then.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/then.png -------------------------------------------------------------------------------- /_site/images/icons/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/timeline.png -------------------------------------------------------------------------------- /_site/images/icons/token-scanning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/token-scanning.png -------------------------------------------------------------------------------- /_site/images/icons/top-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/top-down.png -------------------------------------------------------------------------------- /_site/images/icons/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/trace.png -------------------------------------------------------------------------------- /_site/images/icons/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/tractor.png -------------------------------------------------------------------------------- /_site/images/icons/transporatation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/transporatation.png -------------------------------------------------------------------------------- /_site/images/icons/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/trophy.png -------------------------------------------------------------------------------- /_site/images/icons/trust-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/trust-center.png -------------------------------------------------------------------------------- /_site/images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/twitter.png -------------------------------------------------------------------------------- /_site/images/icons/types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/types.png -------------------------------------------------------------------------------- /_site/images/icons/uber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/uber.png -------------------------------------------------------------------------------- /_site/images/icons/uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/uniform.png -------------------------------------------------------------------------------- /_site/images/icons/unlimited-PTO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/unlimited-PTO.png -------------------------------------------------------------------------------- /_site/images/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/upload.png -------------------------------------------------------------------------------- /_site/images/icons/user-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/user-groups.png -------------------------------------------------------------------------------- /_site/images/icons/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/variables.png -------------------------------------------------------------------------------- /_site/images/icons/vendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/vendor.png -------------------------------------------------------------------------------- /_site/images/icons/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/version.png -------------------------------------------------------------------------------- /_site/images/icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/video.png -------------------------------------------------------------------------------- /_site/images/icons/vocabulary-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/vocabulary-dictionary.png -------------------------------------------------------------------------------- /_site/images/icons/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/wand.png -------------------------------------------------------------------------------- /_site/images/icons/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/watch.png -------------------------------------------------------------------------------- /_site/images/icons/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/web.png -------------------------------------------------------------------------------- /_site/images/icons/webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/webhooks.png -------------------------------------------------------------------------------- /_site/images/icons/websocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/websocket.png -------------------------------------------------------------------------------- /_site/images/icons/workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/workflows.png -------------------------------------------------------------------------------- /_site/images/icons/workspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/workspaces.png -------------------------------------------------------------------------------- /_site/images/icons/wsdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/icons/wsdl.png -------------------------------------------------------------------------------- /_site/images/json-schema-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/json-schema-icon.png -------------------------------------------------------------------------------- /_site/images/new-relic-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/new-relic-icon.png -------------------------------------------------------------------------------- /_site/images/openapi-icon 2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/openapi-icon 2.pxm -------------------------------------------------------------------------------- /_site/images/openapi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/openapi-icon.png -------------------------------------------------------------------------------- /_site/images/postman-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/postman-icon.png -------------------------------------------------------------------------------- /_site/images/postman-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/postman-screenshot.png -------------------------------------------------------------------------------- /_site/images/producer-consumer-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/producer-consumer-lifecycle.png -------------------------------------------------------------------------------- /_site/images/proxy-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/proxy-icon.png -------------------------------------------------------------------------------- /_site/images/spectral-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/spectral-icon.png -------------------------------------------------------------------------------- /_site/images/visual-studio-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/visual-studio-icon.png -------------------------------------------------------------------------------- /_site/images/websockets-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/websockets-icon.png -------------------------------------------------------------------------------- /_site/images/youtube-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/_site/images/youtube-icon.png -------------------------------------------------------------------------------- /blueprints/integrated-development-environments(ide).md: -------------------------------------------------------------------------------- 1 | ## Integrated Development Environments(IDE) 2 | The fundamentals of mocking. 3 | 4 | null 5 | -------------------------------------------------------------------------------- /cname: -------------------------------------------------------------------------------- 1 | apis.how -------------------------------------------------------------------------------- /gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages', group: :jekyll_plugins 3 | -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | gemfile 3 | Gemfile.lock 4 | _site -------------------------------------------------------------------------------- /images/aws-api-gateway-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/aws-api-gateway-icon.png -------------------------------------------------------------------------------- /images/aws-lambda-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/aws-lambda-icon.jpg -------------------------------------------------------------------------------- /images/aws-lambda-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/aws-lambda-icon.png -------------------------------------------------------------------------------- /images/blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprint.png -------------------------------------------------------------------------------- /images/blueprints/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/.DS_Store -------------------------------------------------------------------------------- /images/blueprints/an-api-design-review.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/an-api-design-review.jpeg -------------------------------------------------------------------------------- /images/blueprints/api-design-first.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/api-design-first.jpeg -------------------------------------------------------------------------------- /images/blueprints/api-design-first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/api-design-first.jpg -------------------------------------------------------------------------------- /images/blueprints/api-regulation-is-here.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/api-regulation-is-here.jpeg -------------------------------------------------------------------------------- /images/blueprints/build-a-business-workflow.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/build-a-business-workflow.jpeg -------------------------------------------------------------------------------- /images/blueprints/discovery-as-the-default.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/discovery-as-the-default.jpeg -------------------------------------------------------------------------------- /images/blueprints/fundamental-api-testing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/fundamental-api-testing.jpeg -------------------------------------------------------------------------------- /images/blueprints/having-an-api-strategy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/having-an-api-strategy.jpeg -------------------------------------------------------------------------------- /images/blueprints/high-level-api-governance.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/high-level-api-governance.jpeg -------------------------------------------------------------------------------- /images/blueprints/low-level-api-governance.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/low-level-api-governance.jpeg -------------------------------------------------------------------------------- /images/blueprints/platform-api-governance.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/platform-api-governance.jpeg -------------------------------------------------------------------------------- /images/blueprints/prioritizing-api-first.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/prioritizing-api-first.jpeg -------------------------------------------------------------------------------- /images/blueprints/versioning-governance.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/versioning-governance.jpeg -------------------------------------------------------------------------------- /images/blueprints/workspace-standardization.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/blueprints/workspace-standardization.jpeg -------------------------------------------------------------------------------- /images/code-first-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/code-first-icon.png -------------------------------------------------------------------------------- /images/code-first-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/code-first-icon.pxm -------------------------------------------------------------------------------- /images/collection-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/collection-icon.png -------------------------------------------------------------------------------- /images/confluence-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/confluence-icon.png -------------------------------------------------------------------------------- /images/design-first-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/design-first-icon.png -------------------------------------------------------------------------------- /images/design-first-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/design-first-icon.pxm -------------------------------------------------------------------------------- /images/github-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/github-icon.png -------------------------------------------------------------------------------- /images/github-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/github-icon.pxm -------------------------------------------------------------------------------- /images/graphql-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/graphql-icon.png -------------------------------------------------------------------------------- /images/grpc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/grpc-icon.png -------------------------------------------------------------------------------- /images/grpc-icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/grpc-icon.pxm -------------------------------------------------------------------------------- /images/icons/Excellence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/Excellence.png -------------------------------------------------------------------------------- /images/icons/Operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/Operations.png -------------------------------------------------------------------------------- /images/icons/SOA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/SOA.png -------------------------------------------------------------------------------- /images/icons/access-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/access-control.png -------------------------------------------------------------------------------- /images/icons/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/actions.png -------------------------------------------------------------------------------- /images/icons/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/activity.png -------------------------------------------------------------------------------- /images/icons/adaptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/adaptive.png -------------------------------------------------------------------------------- /images/icons/aggregation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/aggregation.png -------------------------------------------------------------------------------- /images/icons/agility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/agility.png -------------------------------------------------------------------------------- /images/icons/agriculture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/agriculture.png -------------------------------------------------------------------------------- /images/icons/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/ai.png -------------------------------------------------------------------------------- /images/icons/alcohol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/alcohol.png -------------------------------------------------------------------------------- /images/icons/algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/algorithm.png -------------------------------------------------------------------------------- /images/icons/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/alien.png -------------------------------------------------------------------------------- /images/icons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/android.png -------------------------------------------------------------------------------- /images/icons/annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/annotations.png -------------------------------------------------------------------------------- /images/icons/api-aware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/api-aware.png -------------------------------------------------------------------------------- /images/icons/api-early.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/api-early.png -------------------------------------------------------------------------------- /images/icons/api-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/api-first.png -------------------------------------------------------------------------------- /images/icons/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/api.png -------------------------------------------------------------------------------- /images/icons/apm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/apm.png -------------------------------------------------------------------------------- /images/icons/archway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/archway.png -------------------------------------------------------------------------------- /images/icons/arpanet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/arpanet.png -------------------------------------------------------------------------------- /images/icons/artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/artifacts.png -------------------------------------------------------------------------------- /images/icons/async-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/async-api.png -------------------------------------------------------------------------------- /images/icons/asynchronous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/asynchronous.png -------------------------------------------------------------------------------- /images/icons/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/auth.png -------------------------------------------------------------------------------- /images/icons/automation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/automation.png -------------------------------------------------------------------------------- /images/icons/availability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/availability.png -------------------------------------------------------------------------------- /images/icons/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/aws.png -------------------------------------------------------------------------------- /images/icons/binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/binding.png -------------------------------------------------------------------------------- /images/icons/bottom-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/bottom-up.png -------------------------------------------------------------------------------- /images/icons/bounded-context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/bounded-context.png -------------------------------------------------------------------------------- /images/icons/broken-function-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/broken-function-auth.png -------------------------------------------------------------------------------- /images/icons/broken-object-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/broken-object-auth.png -------------------------------------------------------------------------------- /images/icons/broken-user-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/broken-user-auth.png -------------------------------------------------------------------------------- /images/icons/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/browse.png -------------------------------------------------------------------------------- /images/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/bug.png -------------------------------------------------------------------------------- /images/icons/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/button.png -------------------------------------------------------------------------------- /images/icons/caching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/caching.png -------------------------------------------------------------------------------- /images/icons/camp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/camp.png -------------------------------------------------------------------------------- /images/icons/capabilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/capabilities.png -------------------------------------------------------------------------------- /images/icons/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/cart.png -------------------------------------------------------------------------------- /images/icons/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/catalog.png -------------------------------------------------------------------------------- /images/icons/ccpa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/ccpa.png -------------------------------------------------------------------------------- /images/icons/centralization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/centralization.png -------------------------------------------------------------------------------- /images/icons/certification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/certification.png -------------------------------------------------------------------------------- /images/icons/champion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/champion.png -------------------------------------------------------------------------------- /images/icons/change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/change.png -------------------------------------------------------------------------------- /images/icons/channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/channels.png -------------------------------------------------------------------------------- /images/icons/ci-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/ci-cd.png -------------------------------------------------------------------------------- /images/icons/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/city.png -------------------------------------------------------------------------------- /images/icons/cloud API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/cloud API.png -------------------------------------------------------------------------------- /images/icons/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/cloud.png -------------------------------------------------------------------------------- /images/icons/code-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/code-generator.png -------------------------------------------------------------------------------- /images/icons/collaborate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/collaborate.png -------------------------------------------------------------------------------- /images/icons/collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/collections.png -------------------------------------------------------------------------------- /images/icons/community-love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/community-love.png -------------------------------------------------------------------------------- /images/icons/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/components.png -------------------------------------------------------------------------------- /images/icons/contract-testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/contract-testing.png -------------------------------------------------------------------------------- /images/icons/contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/contract.png -------------------------------------------------------------------------------- /images/icons/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/control.png -------------------------------------------------------------------------------- /images/icons/corba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/corba.png -------------------------------------------------------------------------------- /images/icons/coverage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/coverage.png -------------------------------------------------------------------------------- /images/icons/customer-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/customer-service.png -------------------------------------------------------------------------------- /images/icons/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/dashboard.png -------------------------------------------------------------------------------- /images/icons/data-mangement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/data-mangement.png -------------------------------------------------------------------------------- /images/icons/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/data.png -------------------------------------------------------------------------------- /images/icons/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/database.png -------------------------------------------------------------------------------- /images/icons/demonstrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/demonstrate.png -------------------------------------------------------------------------------- /images/icons/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/deploy.png -------------------------------------------------------------------------------- /images/icons/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/description.png -------------------------------------------------------------------------------- /images/icons/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/desktop.png -------------------------------------------------------------------------------- /images/icons/develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/develop.png -------------------------------------------------------------------------------- /images/icons/device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/device.png -------------------------------------------------------------------------------- /images/icons/direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/direction.png -------------------------------------------------------------------------------- /images/icons/discovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/discovery.png -------------------------------------------------------------------------------- /images/icons/disperse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/disperse.png -------------------------------------------------------------------------------- /images/icons/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/dns.png -------------------------------------------------------------------------------- /images/icons/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/document.png -------------------------------------------------------------------------------- /images/icons/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/documentation.png -------------------------------------------------------------------------------- /images/icons/domain-capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/domain-capture.png -------------------------------------------------------------------------------- /images/icons/doordash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/doordash.png -------------------------------------------------------------------------------- /images/icons/drizzly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/drizzly.png -------------------------------------------------------------------------------- /images/icons/eacade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/eacade.png -------------------------------------------------------------------------------- /images/icons/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/ebay.png -------------------------------------------------------------------------------- /images/icons/ec2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/ec2.png -------------------------------------------------------------------------------- /images/icons/edi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/edi.png -------------------------------------------------------------------------------- /images/icons/editable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/editable.png -------------------------------------------------------------------------------- /images/icons/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/education.png -------------------------------------------------------------------------------- /images/icons/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/enable.png -------------------------------------------------------------------------------- /images/icons/encryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/encryption.png -------------------------------------------------------------------------------- /images/icons/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/energy.png -------------------------------------------------------------------------------- /images/icons/engagement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/engagement.png -------------------------------------------------------------------------------- /images/icons/engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/engineering.png -------------------------------------------------------------------------------- /images/icons/enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/enterprise.png -------------------------------------------------------------------------------- /images/icons/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/environment.png -------------------------------------------------------------------------------- /images/icons/event-driven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/event-driven.png -------------------------------------------------------------------------------- /images/icons/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/events.png -------------------------------------------------------------------------------- /images/icons/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/example.png -------------------------------------------------------------------------------- /images/icons/excessive-data-exposure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/excessive-data-exposure.png -------------------------------------------------------------------------------- /images/icons/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/execute.png -------------------------------------------------------------------------------- /images/icons/experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/experiment.png -------------------------------------------------------------------------------- /images/icons/expertise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/expertise.png -------------------------------------------------------------------------------- /images/icons/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/explore.png -------------------------------------------------------------------------------- /images/icons/export-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/export-package.png -------------------------------------------------------------------------------- /images/icons/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/extension.png -------------------------------------------------------------------------------- /images/icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/external.png -------------------------------------------------------------------------------- /images/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/facebook.png -------------------------------------------------------------------------------- /images/icons/federated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/federated.png -------------------------------------------------------------------------------- /images/icons/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/feedback.png -------------------------------------------------------------------------------- /images/icons/fhir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/fhir.png -------------------------------------------------------------------------------- /images/icons/finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/finance.png -------------------------------------------------------------------------------- /images/icons/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/flickr.png -------------------------------------------------------------------------------- /images/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/folder.png -------------------------------------------------------------------------------- /images/icons/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/food.png -------------------------------------------------------------------------------- /images/icons/forking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/forking.png -------------------------------------------------------------------------------- /images/icons/forks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/forks.png -------------------------------------------------------------------------------- /images/icons/format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/format.png -------------------------------------------------------------------------------- /images/icons/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/forms.png -------------------------------------------------------------------------------- /images/icons/fragments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/fragments.png -------------------------------------------------------------------------------- /images/icons/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/framework.png -------------------------------------------------------------------------------- /images/icons/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/ftp.png -------------------------------------------------------------------------------- /images/icons/gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/gateway.png -------------------------------------------------------------------------------- /images/icons/gdpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/gdpr.png -------------------------------------------------------------------------------- /images/icons/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/git.png -------------------------------------------------------------------------------- /images/icons/given.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/given.png -------------------------------------------------------------------------------- /images/icons/governance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/governance.png -------------------------------------------------------------------------------- /images/icons/graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/graphql.png -------------------------------------------------------------------------------- /images/icons/grocery delivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/grocery delivery.png -------------------------------------------------------------------------------- /images/icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/group.png -------------------------------------------------------------------------------- /images/icons/growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/growth.png -------------------------------------------------------------------------------- /images/icons/grpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/grpc.png -------------------------------------------------------------------------------- /images/icons/grubhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/grubhub.png -------------------------------------------------------------------------------- /images/icons/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/header.png -------------------------------------------------------------------------------- /images/icons/healthcare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/healthcare.png -------------------------------------------------------------------------------- /images/icons/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/hierarchy.png -------------------------------------------------------------------------------- /images/icons/hotspot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/hotspot.png -------------------------------------------------------------------------------- /images/icons/http-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/http-2.png -------------------------------------------------------------------------------- /images/icons/http-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/http-3.png -------------------------------------------------------------------------------- /images/icons/http-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/http-request.png -------------------------------------------------------------------------------- /images/icons/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/http.png -------------------------------------------------------------------------------- /images/icons/iana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/iana.png -------------------------------------------------------------------------------- /images/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/image.png -------------------------------------------------------------------------------- /images/icons/individual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/individual.png -------------------------------------------------------------------------------- /images/icons/industry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/industry.png -------------------------------------------------------------------------------- /images/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/info.png -------------------------------------------------------------------------------- /images/icons/infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/infrastructure.png -------------------------------------------------------------------------------- /images/icons/injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/injection.png -------------------------------------------------------------------------------- /images/icons/innovation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/innovation.png -------------------------------------------------------------------------------- /images/icons/instacart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/instacart.png -------------------------------------------------------------------------------- /images/icons/integrated-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/integrated-development.png -------------------------------------------------------------------------------- /images/icons/integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/integration.png -------------------------------------------------------------------------------- /images/icons/intelligence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/intelligence.png -------------------------------------------------------------------------------- /images/icons/interceptor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/interceptor.png -------------------------------------------------------------------------------- /images/icons/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/interface.png -------------------------------------------------------------------------------- /images/icons/internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/internal.png -------------------------------------------------------------------------------- /images/icons/interoperability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/interoperability.png -------------------------------------------------------------------------------- /images/icons/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/iphone.png -------------------------------------------------------------------------------- /images/icons/issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/issues.png -------------------------------------------------------------------------------- /images/icons/iterate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/iterate.png -------------------------------------------------------------------------------- /images/icons/json-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/json-schema.png -------------------------------------------------------------------------------- /images/icons/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/json.png -------------------------------------------------------------------------------- /images/icons/language-compatibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/language-compatibility.png -------------------------------------------------------------------------------- /images/icons/latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/latency.png -------------------------------------------------------------------------------- /images/icons/leader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/leader.png -------------------------------------------------------------------------------- /images/icons/leagal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/leagal.png -------------------------------------------------------------------------------- /images/icons/learning center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/learning center.png -------------------------------------------------------------------------------- /images/icons/lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/lifecycle.png -------------------------------------------------------------------------------- /images/icons/log-checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/log-checklist.png -------------------------------------------------------------------------------- /images/icons/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/log.png -------------------------------------------------------------------------------- /images/icons/manufacture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/manufacture.png -------------------------------------------------------------------------------- /images/icons/marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/marketing.png -------------------------------------------------------------------------------- /images/icons/mass-dristribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/mass-dristribution.png -------------------------------------------------------------------------------- /images/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/menu.png -------------------------------------------------------------------------------- /images/icons/message-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/message-type.png -------------------------------------------------------------------------------- /images/icons/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/message.png -------------------------------------------------------------------------------- /images/icons/methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/methods.png -------------------------------------------------------------------------------- /images/icons/metrics-charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/metrics-charts.png -------------------------------------------------------------------------------- /images/icons/microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/microservices.png -------------------------------------------------------------------------------- /images/icons/migrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/migrate.png -------------------------------------------------------------------------------- /images/icons/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/mobile.png -------------------------------------------------------------------------------- /images/icons/mock-servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/mock-servers.png -------------------------------------------------------------------------------- /images/icons/modernization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/modernization.png -------------------------------------------------------------------------------- /images/icons/modular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/modular.png -------------------------------------------------------------------------------- /images/icons/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/money.png -------------------------------------------------------------------------------- /images/icons/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/monitor.png -------------------------------------------------------------------------------- /images/icons/monolyth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/monolyth.png -------------------------------------------------------------------------------- /images/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/move.png -------------------------------------------------------------------------------- /images/icons/mqtt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/mqtt.png -------------------------------------------------------------------------------- /images/icons/multi-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/multi-cloud.png -------------------------------------------------------------------------------- /images/icons/multi-region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/multi-region.png -------------------------------------------------------------------------------- /images/icons/mutations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/mutations.png -------------------------------------------------------------------------------- /images/icons/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/network.png -------------------------------------------------------------------------------- /images/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/new.png -------------------------------------------------------------------------------- /images/icons/newman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/newman.png -------------------------------------------------------------------------------- /images/icons/no-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/no-resource.png -------------------------------------------------------------------------------- /images/icons/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/notification.png -------------------------------------------------------------------------------- /images/icons/one-way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/one-way.png -------------------------------------------------------------------------------- /images/icons/open-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/open-api.png -------------------------------------------------------------------------------- /images/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/open.png -------------------------------------------------------------------------------- /images/icons/opportunities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/opportunities.png -------------------------------------------------------------------------------- /images/icons/organizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/organizations.png -------------------------------------------------------------------------------- /images/icons/outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/outcome.png -------------------------------------------------------------------------------- /images/icons/owasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/owasp.png -------------------------------------------------------------------------------- /images/icons/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/pagination.png -------------------------------------------------------------------------------- /images/icons/party-celebrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/party-celebrate.png -------------------------------------------------------------------------------- /images/icons/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/paths.png -------------------------------------------------------------------------------- /images/icons/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/pipeline.png -------------------------------------------------------------------------------- /images/icons/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/platform.png -------------------------------------------------------------------------------- /images/icons/port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/port.png -------------------------------------------------------------------------------- /images/icons/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/portal.png -------------------------------------------------------------------------------- /images/icons/postman-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/postman-api.png -------------------------------------------------------------------------------- /images/icons/postman-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/postman-cli.png -------------------------------------------------------------------------------- /images/icons/postman-repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/postman-repository.png -------------------------------------------------------------------------------- /images/icons/postman-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/postman-web-app.png -------------------------------------------------------------------------------- /images/icons/presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/presentation.png -------------------------------------------------------------------------------- /images/icons/principles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/principles.png -------------------------------------------------------------------------------- /images/icons/private-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/private-workspace.png -------------------------------------------------------------------------------- /images/icons/product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/product.png -------------------------------------------------------------------------------- /images/icons/productivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/productivity.png -------------------------------------------------------------------------------- /images/icons/properties info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/properties info.png -------------------------------------------------------------------------------- /images/icons/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/properties.png -------------------------------------------------------------------------------- /images/icons/protocol-buffers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/protocol-buffers.png -------------------------------------------------------------------------------- /images/icons/protocols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/protocols.png -------------------------------------------------------------------------------- /images/icons/proxies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/proxies.png -------------------------------------------------------------------------------- /images/icons/psd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/psd2.png -------------------------------------------------------------------------------- /images/icons/public-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/public-link.png -------------------------------------------------------------------------------- /images/icons/public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/public.png -------------------------------------------------------------------------------- /images/icons/publish-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/publish-send.png -------------------------------------------------------------------------------- /images/icons/quality-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/quality-review.png -------------------------------------------------------------------------------- /images/icons/quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/quality.png -------------------------------------------------------------------------------- /images/icons/rbac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/rbac.png -------------------------------------------------------------------------------- /images/icons/rds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/rds.png -------------------------------------------------------------------------------- /images/icons/real-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/real-time.png -------------------------------------------------------------------------------- /images/icons/reduce-cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/reduce-cost.png -------------------------------------------------------------------------------- /images/icons/region.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/region.png -------------------------------------------------------------------------------- /images/icons/reliable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/reliable.png -------------------------------------------------------------------------------- /images/icons/repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/repo.png -------------------------------------------------------------------------------- /images/icons/reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/reporting.png -------------------------------------------------------------------------------- /images/icons/request-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/request-response.png -------------------------------------------------------------------------------- /images/icons/required.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/required.png -------------------------------------------------------------------------------- /images/icons/rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/rest.png -------------------------------------------------------------------------------- /images/icons/revenue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/revenue.png -------------------------------------------------------------------------------- /images/icons/rfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/rfc.png -------------------------------------------------------------------------------- /images/icons/ride-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/ride-share.png -------------------------------------------------------------------------------- /images/icons/rigid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/rigid.png -------------------------------------------------------------------------------- /images/icons/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/roadmap.png -------------------------------------------------------------------------------- /images/icons/robust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/robust.png -------------------------------------------------------------------------------- /images/icons/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/role.png -------------------------------------------------------------------------------- /images/icons/room-with-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/room-with-view.png -------------------------------------------------------------------------------- /images/icons/routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/routing.png -------------------------------------------------------------------------------- /images/icons/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/runner.png -------------------------------------------------------------------------------- /images/icons/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/s3.png -------------------------------------------------------------------------------- /images/icons/saas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/saas.png -------------------------------------------------------------------------------- /images/icons/saber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/saber.png -------------------------------------------------------------------------------- /images/icons/salesforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/salesforce.png -------------------------------------------------------------------------------- /images/icons/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/scale.png -------------------------------------------------------------------------------- /images/icons/scim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/scim.png -------------------------------------------------------------------------------- /images/icons/scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/scripts.png -------------------------------------------------------------------------------- /images/icons/sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/sdk.png -------------------------------------------------------------------------------- /images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/search.png -------------------------------------------------------------------------------- /images/icons/security-misconfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/security-misconfiguration.png -------------------------------------------------------------------------------- /images/icons/security-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/security-review.png -------------------------------------------------------------------------------- /images/icons/security-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/security-shield.png -------------------------------------------------------------------------------- /images/icons/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/selection.png -------------------------------------------------------------------------------- /images/icons/self-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/self-service.png -------------------------------------------------------------------------------- /images/icons/seperation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/seperation.png -------------------------------------------------------------------------------- /images/icons/serverless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/serverless.png -------------------------------------------------------------------------------- /images/icons/servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/servers.png -------------------------------------------------------------------------------- /images/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/settings.png -------------------------------------------------------------------------------- /images/icons/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/shapes.png -------------------------------------------------------------------------------- /images/icons/sign-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/sign-on.png -------------------------------------------------------------------------------- /images/icons/skeleton-deprecated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/skeleton-deprecated.png -------------------------------------------------------------------------------- /images/icons/sla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/sla.png -------------------------------------------------------------------------------- /images/icons/smb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/smb.png -------------------------------------------------------------------------------- /images/icons/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/solution.png -------------------------------------------------------------------------------- /images/icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/sound.png -------------------------------------------------------------------------------- /images/icons/source-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/source-control.png -------------------------------------------------------------------------------- /images/icons/source-of-truth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/source-of-truth.png -------------------------------------------------------------------------------- /images/icons/sovereignity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/sovereignity.png -------------------------------------------------------------------------------- /images/icons/spapceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/spapceship.png -------------------------------------------------------------------------------- /images/icons/sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/sport.png -------------------------------------------------------------------------------- /images/icons/stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/stages.png -------------------------------------------------------------------------------- /images/icons/stakeholders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/stakeholders.png -------------------------------------------------------------------------------- /images/icons/starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/starter.png -------------------------------------------------------------------------------- /images/icons/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/storage.png -------------------------------------------------------------------------------- /images/icons/strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/strategy.png -------------------------------------------------------------------------------- /images/icons/strict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/strict.png -------------------------------------------------------------------------------- /images/icons/suggest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/suggest.png -------------------------------------------------------------------------------- /images/icons/super-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/super-admin.png -------------------------------------------------------------------------------- /images/icons/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/support.png -------------------------------------------------------------------------------- /images/icons/switching costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/switching costs.png -------------------------------------------------------------------------------- /images/icons/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/sync.png -------------------------------------------------------------------------------- /images/icons/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/target.png -------------------------------------------------------------------------------- /images/icons/tcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/tcp.png -------------------------------------------------------------------------------- /images/icons/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/template.png -------------------------------------------------------------------------------- /images/icons/text-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/text-properties.png -------------------------------------------------------------------------------- /images/icons/then.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/then.png -------------------------------------------------------------------------------- /images/icons/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/timeline.png -------------------------------------------------------------------------------- /images/icons/token-scanning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/token-scanning.png -------------------------------------------------------------------------------- /images/icons/top-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/top-down.png -------------------------------------------------------------------------------- /images/icons/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/trace.png -------------------------------------------------------------------------------- /images/icons/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/tractor.png -------------------------------------------------------------------------------- /images/icons/transporatation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/transporatation.png -------------------------------------------------------------------------------- /images/icons/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/trophy.png -------------------------------------------------------------------------------- /images/icons/trust-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/trust-center.png -------------------------------------------------------------------------------- /images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/twitter.png -------------------------------------------------------------------------------- /images/icons/types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/types.png -------------------------------------------------------------------------------- /images/icons/uber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/uber.png -------------------------------------------------------------------------------- /images/icons/uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/uniform.png -------------------------------------------------------------------------------- /images/icons/unlimited-PTO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/unlimited-PTO.png -------------------------------------------------------------------------------- /images/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/upload.png -------------------------------------------------------------------------------- /images/icons/user-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/user-groups.png -------------------------------------------------------------------------------- /images/icons/variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/variables.png -------------------------------------------------------------------------------- /images/icons/vendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/vendor.png -------------------------------------------------------------------------------- /images/icons/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/version.png -------------------------------------------------------------------------------- /images/icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/video.png -------------------------------------------------------------------------------- /images/icons/vocabulary-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/vocabulary-dictionary.png -------------------------------------------------------------------------------- /images/icons/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/wand.png -------------------------------------------------------------------------------- /images/icons/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/watch.png -------------------------------------------------------------------------------- /images/icons/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/web.png -------------------------------------------------------------------------------- /images/icons/webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/webhooks.png -------------------------------------------------------------------------------- /images/icons/websocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/websocket.png -------------------------------------------------------------------------------- /images/icons/workflows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/workflows.png -------------------------------------------------------------------------------- /images/icons/workspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/workspaces.png -------------------------------------------------------------------------------- /images/icons/wsdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/icons/wsdl.png -------------------------------------------------------------------------------- /images/json-schema-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/json-schema-icon.png -------------------------------------------------------------------------------- /images/new-relic-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/new-relic-icon.png -------------------------------------------------------------------------------- /images/openapi-icon 2.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/openapi-icon 2.pxm -------------------------------------------------------------------------------- /images/openapi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/openapi-icon.png -------------------------------------------------------------------------------- /images/postman-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/postman-icon.png -------------------------------------------------------------------------------- /images/postman-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/postman-screenshot.png -------------------------------------------------------------------------------- /images/producer-consumer-lifecycle-handoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/producer-consumer-lifecycle-handoff.png -------------------------------------------------------------------------------- /images/producer-consumer-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/producer-consumer-lifecycle.png -------------------------------------------------------------------------------- /images/proxy-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/proxy-icon.png -------------------------------------------------------------------------------- /images/spectral-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/spectral-icon.png -------------------------------------------------------------------------------- /images/visual-studio-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/visual-studio-icon.png -------------------------------------------------------------------------------- /images/websockets-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/websockets-icon.png -------------------------------------------------------------------------------- /images/youtube-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postman-open-technologies/lifecycle/25b385d358a0377d0ea2dc4122950fe1f7e0efdf/images/youtube-icon.png --------------------------------------------------------------------------------