Update notes authored by ekes's avatar ekes
...@@ -200,54 +200,54 @@ For each entity there's a predefined set of facets. ...@@ -200,54 +200,54 @@ For each entity there's a predefined set of facets.
``` ```
Events: Events:
// operator: and // operator: and
FacetPostalCode = "field_offline:field_address:postal_code" "field_offline:field_address:postal_code"
// Always starts with an uppercase letter, e.g. Berlin // Always starts with an uppercase letter, e.g. Berlin
// operator: and // operator: and
FacetCity = "city" "city"
// Uppercase country code, e.g. DE for Germany // Uppercase country code, e.g. DE for Germany
// operator: and // operator: and
FacetCountry = "country" "country"
// The date must be in the format YY YY-MM or YYYY-MM-DD // The date must be in the format YY YY-MM or YYYY-MM-DD
// operator: or // operator: or
FacetDate = "date" "date"
// price category, e.g. "free-121" // price category, e.g. "free-121"
FacetPrice = "price" "price"
// Topic tag, e.g. "sport", "vegan" // Topic tag, e.g. "sport", "vegan"
// operator: and // operator: and
FacetTag = "tag" "tag"
// operator: or // operator: or
FacetGroup = "group" "group"
// Spaces and slashes should be replaced by a dash, e.g. "work space/diy" => // Spaces and slashes should be replaced by a dash, e.g. "work space/diy" =>
// "work-space-diy" // "work-space-diy"
// operator: and // operator: and
FacetCategory = "category" "category"
Groups: Groups:
//operator: none //operator: none
FacetOfflineMap = "offline:map" "offline:map"
// For some reason values need to start with a lowercase here, e.g. berlin // For some reason values need to start with a lowercase here, e.g. berlin
// operator: and // operator: and
FacetCity = "city" "city"
// Uppercase country code, e.g. DE for Germany // Uppercase country code, e.g. DE for Germany
// operator: and // operator: and
FacetCountry = "country" "country"
// operator: and // operator: and
FacetSquated = "squated" "squated"
// Group is listed by this group. // Group is listed by this group.
// operator: and // operator: and
FacetRadarGroupListedBy = "radar_group_listed_by" "radar_group_listed_by"
// If the group is active // If the group is active
// operator: or // operator: or
FacetActive = "field_active" "field_active"
// topic / tag // topic / tag
// operator: and // operator: and
FacetTopic = "topic" "topic"
// Spaces and slashes should be replaced by a dash, e.g. "work space/diy" => // Spaces and slashes should be replaced by a dash, e.g. "work space/diy" =>
// "work-space-diy" // "work-space-diy"
// operator: and // operator: and
FacetCategory = "category" "category"
// operator: and // operator: and
FacetTitle = "title" "title"
``` ```
... ...
......