Naviga Photos
4.0.1
4.0.1
  • Welcome to Naviga Photos!
  • Introduction
    • What is Naviga Photos?
  • User Guide
    • Top menu
    • Uploading photos
      • Manage the photo list
      • Wingman Meta
    • Metadata settings
      • Individual metadata
      • Reset metadata
      • Mandatory metadata
    • History
    • Find uploaded photos
      • Manage metadata settings
      • Preview
      • Download photos
      • Copy UUID
    • Navigation and hotkeys
  • Admin Guide
    • Installation and upgrade
    • Requirements
    • Changelog
    • Permissions
    • Configuration
      • Metadata
        • XMP
        • IPTC
        • EXIF
      • Providers
        • ICP configuration examples
      • Validation
      • Mappings
      • Settings
      • Wingman
  • Developer Guide
    • See the source code
Powered by GitBook
On this page
  • Open Content Property mappings
  • Suggest search configuration

Was this helpful?

  1. Admin Guide
  2. Configuration

Mappings

Open Content Property mappings

Concepts

Key

Type

Description

uuid

string

Enter the name of this property from OC

name

string

Enter the name of this property from OC

type

string

Enter the name of this property from OC

avatar

object

The object contains a single key, "property" with the name of the relation to avatar.

Example:

{
    "uuid": "uuid",
    "name": "ConceptName",
    "type": "ConceptImTypeFull",
    "avatar": {
        "property": "ConceptAvatarRelation"
    }
}

Avatars

Key

Type

Description

uuid

string

Enter the name of this property from OC

filename

string

Enter the name of this property from OC

{
    "uuid": "uuid",
    "filename": "WriterFilename"
}

Images

Key

Type

Description

uuid

string

Enter the name of this property from OC

author

string

Enter the name of this property from OC

filename

string

Enter the name of this property from OC

updated

string

Enter the name of this property from OC

{
    "uuid": "uuid",
    "author": "WriterAuthors",
    "filename": "WriterFileName",
    "updated": "updated"
}

Suggest search configuration

Configuration for suggest search which is used when finding existing photos.

Key

Type

Description

suggestFields

array of objects

Each object contains two keys: "name" and "order". "name" is the name of the OC property. "order" is not used at the moment.

suggestLabels

object

The object contains keys with the suggest fields and the labels used in the user interface.

searchOptions

object

The object contains the suggest search options, se example below.

{
        "suggestFields": [
                {
                        "name": "NavigaPhotosPhotographer",
                        "order": 10
                },
                {
                        "name": "WriterAuthors",
                        "order": 10
                },
                {
                        "name": "NavigaPhotosTags",
                        "order": 10
                }
        ],
        "suggestLabels": {
                "NavigaPhotosPhotographer": "Photographer",
                "WriterAuthors": "Author",
                "NavigaPhotosTags": "Tags"
        },
        "searchOptions": {
                "limit": 24,
                "defaultQuery": "*",
                "filterQuery": "contenttype: Image",
                "sortField": "updated",
                "sortAscending": false
        }
}

Photo date field

The name of the OC property containing the photo date. If omitted, date fields in suggest search are not shown.

NavigaPhotosPhotoDate
PreviousValidationNextSettings

Was this helpful?