snello CMS
  • Snello CMS
  • Get Started
  • Architecture
    • Snello API
    • Snello ADMIN
  • Docker Images
    • Database
    • Storage
    • Mail settings
    • Docker compose
  • Metadata
    • UUIDs
    • To reuse existing database tables
    • Advanced configuration
    • Reserved Metadata Names
  • Field Definitions
    • Data Types
    • Multijoin: database and rest queries
    • CRUD options
  • How to query using REST API
    • metadata api
    • filters & limit & sort
      • protect your api
  • Conditions
    • Multijoin conditions
  • Documents
    • Download endpoint
  • How to publish your web pages
  • Select Queries
  • Authentication & Authorization
    • User & Roles
    • Password recovery
    • Url Map Rules
  • Links
  • Draggables & Droppables
    • angular syntax
  • Deploy in Production
    • Let’s Encrypt
    • Remove Hashbang
    • Traefik
    • Rendertron
  • Notes
    • Micronaut - create extensions
    • Native image
    • Editor for code
    • Multi languages
  • k8s cache distributed
  • Developers Space
    • Java code
    • Angular code
  • Roadmap
    • Java Evolution
    • Angular Evolution
    • Next features
Powered by GitBook
On this page
Edit on GitHub
  1. Metadata

UUIDs

The unique identify of your rows

PreviousMetadataNextTo reuse existing database tables

Last updated 2 years ago

uuid: 550e8400-e29b-41d4-a716-446655440000

slug:

https://yoast.com/slug/

A slug is the part of a URL which identifies a particular page on a website in an easy to read form. In other words, it’s the part of the URL that explains the page’s content. For this article, for example, the URL is , and the slug simply is ‘slug’.

To create a slug, you should declare another field name, 
that we will use to "slug it". 

The slug generator function:

field.trim().replaceAll("[^a-zA-Z0-9\\s]", "").replaceAll("[\\s]", "-");

�We also assure witch the generated uuid is unique.

autoincrement:

traditional sequence or identity

https://yoast.com/slug