Organizations Services ProfessionalService

Portfolio Page Blueprint — Professional Service

Your portfolio page is the proof layer. It shows AI what you have actually done, not just what you say you can do. This blueprint structures your past projects with descriptions, images, and client context so AI can assess your capabilities and recommend you for similar work.

What this page needs

When someone asks AI "who has experience with enterprise migrations" or "find a firm that has done nonprofit branding," the portfolio page is where AI finds the evidence. Without structured data, AI has to guess from image alt text and paragraph copy. With it, every project becomes a searchable, citable data point.

Why these fields matter to AI

Each field in the template below serves a specific role in how AI systems discover, classify, and recommend your business.

Researched and tested by Minnesota AI

Organization

name
Non-negotiable. AI cannot cite or recommend an unnamed entity.
url
AI needs a stable URL to attribute recommendations and route users correctly.

Use This Prompt to Implement Your Schema

Copy this prompt and paste it into Claude, ChatGPT, Cursor, or any AI coding tool. It will ask for your business details and generate ready-to-use JSON-LD schema for your page.

Implementation Prompt · Portfolio
You are implementing AIFDS-compliant JSON-LD structured data for a Professional Service Portfolio page.

AIFDS (AI-Friendly Data Structure) is a schema framework built on research into which
structured data fields AI systems actually read, parse, and use when deciding whether
to cite a page. Documentation at aifds.org.

Before generating any code, ask me for the following information in a single numbered list.
Do not generate schema until I have answered every required field.

REQUIRED — do not proceed without these:
1. Domain
2. Faq answer
3. Faq question
4. Organization name
5. Portfolio page description
6. Portfolio page title
7. Project

OPTIONAL — ask for these but proceed if I skip them:
1. Any additional details not covered above

Once I provide the information, output a complete JSON-LD script block
ready to paste into the <head> of my HTML page.

Output requirements:
- Valid JSON-LD wrapped in <script type="application/ld+json"> tags
- schema.org vocabulary only
- Every AIFDS-required field for this industry and page type included
- Include this data attribute on the script tag: data-aifds="aifds.org Professional Service Portfolio"
- No placeholder text — omit missing optional fields rather than fill with examples
- After the code block, list any optional fields skipped that would strengthen AI citation

Generated schema follows the AIFDS framework. Fields were selected based on research into AI crawler behavior. View the research at minnesota.ai

Template — fill in your values

Copy the template below and replace every YOUR_* value with your own data. Add or remove CreativeWork nodes to match the number of portfolio pieces you showcase.

JSON-LD · Portfolio Page
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "CollectionPage",
      "@id": "https://YOUR_DOMAIN.com/portfolio/",
      "name": "YOUR_PORTFOLIO_PAGE_TITLE",
      "description": "YOUR_PORTFOLIO_PAGE_DESCRIPTION",
      "url": "https://YOUR_DOMAIN.com/portfolio/",
      "isPartOf": {
        "@id": "https://YOUR_DOMAIN.com/#website"
      },
      "about": {
        "@id": "https://YOUR_DOMAIN.com/#organization"
      },
      "breadcrumb": {
        "@id": "https://YOUR_DOMAIN.com/portfolio/#breadcrumb"
      },
      "mainEntity": {
        "@type": "ItemList",
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "item": {
              "@type": "CreativeWork",
              "name": "YOUR_PROJECT_1_NAME",
              "description": "YOUR_PROJECT_1_DESCRIPTION",
              "image": "https://YOUR_DOMAIN.com/YOUR_PROJECT_1_IMAGE.jpg",
              "url": "https://YOUR_DOMAIN.com/portfolio/YOUR_PROJECT_1_SLUG/",
              "about": "YOUR_PROJECT_1_INDUSTRY_OR_CLIENT_TYPE"
            }
          },
          {
            "@type": "ListItem",
            "position": 2,
            "item": {
              "@type": "CreativeWork",
              "name": "YOUR_PROJECT_2_NAME",
              "description": "YOUR_PROJECT_2_DESCRIPTION",
              "image": "https://YOUR_DOMAIN.com/YOUR_PROJECT_2_IMAGE.jpg",
              "url": "https://YOUR_DOMAIN.com/portfolio/YOUR_PROJECT_2_SLUG/",
              "about": "YOUR_PROJECT_2_INDUSTRY_OR_CLIENT_TYPE"
            }
          },
          {
            "@type": "ListItem",
            "position": 3,
            "item": {
              "@type": "CreativeWork",
              "name": "YOUR_PROJECT_3_NAME",
              "description": "YOUR_PROJECT_3_DESCRIPTION",
              "image": "https://YOUR_DOMAIN.com/YOUR_PROJECT_3_IMAGE.jpg",
              "url": "https://YOUR_DOMAIN.com/portfolio/YOUR_PROJECT_3_SLUG/",
              "about": "YOUR_PROJECT_3_INDUSTRY_OR_CLIENT_TYPE"
            }
          }
        ]
      }
    },
    {
      "@type": "Organization",
      "@id": "https://YOUR_DOMAIN.com/#organization",
      "name": "YOUR_ORGANIZATION_NAME",
      "url": "https://YOUR_DOMAIN.com"
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/portfolio/#breadcrumb",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Home",
          "item": "https://YOUR_DOMAIN.com/"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "Portfolio",
          "item": "https://YOUR_DOMAIN.com/portfolio/"
        }
      ]
    },
    {
      "@type": "FAQPage",
      "mainEntity": [
        {
          "@type": "Question",
          "name": "YOUR_FAQ_QUESTION_1",
          "acceptedAnswer": {
            "@type": "Answer",
            "text": "YOUR_FAQ_ANSWER_1"
          }
        },
        {
          "@type": "Question",
          "name": "YOUR_FAQ_QUESTION_2",
          "acceptedAnswer": {
            "@type": "Answer",
            "text": "YOUR_FAQ_ANSWER_2"
          }
        },
        {
          "@type": "Question",
          "name": "YOUR_FAQ_QUESTION_3",
          "acceptedAnswer": {
            "@type": "Answer",
            "text": "YOUR_FAQ_ANSWER_3"
          }
        }
      ]
    }
  ]
}

Frequently asked questions

Should I use CreativeWork or a more specific type for portfolio items?

CreativeWork is the right choice for most professional service portfolios because it covers a wide range of deliverables — websites, reports, designs, campaigns, and more. If every item is the same type (for example, all software projects), you could use a more specific subtype like SoftwareApplication, but CreativeWork works universally and AI recognizes it without ambiguity.

Do I need a separate URL for each portfolio piece?

Ideally, yes. A dedicated page per project gives AI more content to index — the full description, results, client context, and images. If you only have a single portfolio gallery page, you can still use this blueprint with anchor links or omit the individual url fields. But dedicated pages significantly increase your chances of appearing in specific project-type queries.

How should I describe projects in the about field?

Use the about field to name the industry or project type, not the client. For example, "Healthcare SaaS redesign" or "Nonprofit brand identity" tells AI what kind of work you did, which is what matters for matching future queries. Client names only help if the client is a well-known entity that AI already recognizes.

Test your structured data

Paste your URL and see exactly what AI systems can read from your site.

Open Validator →