> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scanova.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Success Page Schema

> Defines the structure for the success or completion screen displayed after form submissions or interactions — typically used in Feedback QR Codes and similar flows.

## Overview

The **Success Page Schema** represents the final screen shown to users after completing an action (such as submitting feedback or RSVP).\
It includes optional **branding elements** (logo, title, and description) and may display **social media profiles** to encourage users to connect or share their experience.

This schema helps ensure consistency across completion or “thank you” pages in Scanova QR Code landing pages.

## Properties

| Property                    | Type     | Required | Description                                                                                                                                |
| :-------------------------- | :------- | :------- | :----------------------------------------------------------------------------------------------------------------------------------------- |
| **logo**                    | `object` | No       | Displays the brand or product logo on the success page.                                                                                    |
| **logo.url**                | `string` | No       | URL of the logo image. Must be a valid image format (`.png`, `.jpg`, `.svg`, `.gif`).                                                      |
| **title**                   | `string` | No       | Main heading text displayed on the success page. Between `0–100` characters.                                                               |
| **description**             | `string` | No       | Supporting text shown below the title. Between `2–200` characters.                                                                         |
| **social\_media\_profiles** | `object` | No       | Reference to the [Social Profile Component](/guides/category-components/components/social_profile), used to display social icons or links. |

## Used in Categories

This component is used in the following categories:

* [Feedback](/guides/category-components/categories/feedback)

**Related Component:**\
The **Start Page Schema** defines the introductory screen that begins the same user flow.\
Together, the Start and Success Page schemas create a complete pre- and post-interaction experience for Feedback QR codes.

## Schema

<CodeGroup>
  ```json Schema theme={null}
  {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {},
    "title": "Success page schema",
    "description": "",
    "type": "object",
    "properties": {
      "logo": {
        "type": "object",
        "required": [],
        "additionalProperties": false,
        "properties": {
          "url": {
            "type": "string",
            "description": "Logo URL",
            "anyOf": [
              {
                "pattern": "^(https?://.*\\.(png|jpeg|jpg|svg|gif|PNG|JPEG|JPG|SVG|GIF))$"
              },
              {
                "const": ""
              }
            ]
          }
        }
      },
      "title": {
        "type": "string",
        "minLength": 0,
        "maxLength": 100,
        "description": "Page title"
      },
      "description": {
        "type": "string",
        "minLength": 2,
        "maxLength": 200,
        "description": "Page description"
      },
      "social_media_profiles": {
        "$ref": "social_profile.json"
      }
    }
  }
  ```
</CodeGroup>

## Notes

* The **Success Page** can serve as a **“Thank You”** or **“Completion”** screen.
* The **social\_media\_profiles** property allows embedding of follow or share icons directly using the [Social Profile Component](/guides/category-components/components/social_profile).
* Keep title and description **short, clear, and positive** — they’re the user’s final interaction point.
* All image URLs should use **HTTPS** for security and reliable loading.
* For consistent branding, reuse the same logo and color scheme as the Start Page.
