Examples

Here are some examples of application configuration.

Example 1

Application Office 365 will only have image on card and be available in category Collaboration. Only user with role Office365 will have the application available.

{
    "id": "42",
	"url": "https://www.office.com/",
	"name": "Office 365",
	"description": "Office 365 is a product family of productivity software, collaboration and cloud-based services owned by Microsoft.",
    "image": "application_images/external_office365.png",
    "requires_any_role": [
        "office365"
    ],
    "tags": [
        {
            "type": "category",
            "value": "Work apps",
            "requires_any_role": [
                "office365"
            ]
        },
        {
            "type": "show_title",
            "value": "false"
        },
        {
            "type": "padding",
            "value": "1"
        }
    ]
}

Example 2

Application Passkey should be available as a Spotlight and in category Enrollment.

{
    "id": "12",
    "url": "https://dev.fortifiedid.se/enrollment/webauthn/app/",
    "name": "Passkey",
    "description": "Fortified ID develops modern products for secure login and identity management for organizations.",
    "image": "application_images/fortifiedid_enroll_passkey_add.png",
    "requires_any_role": [
        "enroll_passkey"
    ],
    "tags": [
        {
            "type": "category",
            "value": "Enrollment",
            "requires_any_role": [
                "enroll_passkey"
            ]
        },
		{
            "type": "category",
            "value": "spotlight",
            "requires_any_role": [
                "enroll_passkey"
            ]
        },
        {
            "type": "show_title",
            "value": "true"
        },
        {
            "type": "padding",
            "value": "1"
        }
    ]
}