Skip to content

Commit c4ace05

Browse files
authoredApr 8, 2020
Add meta & documentation-related properties
There are a number of valid attribute properties that are not currently included in the documentation. Add them. References: 1. Explanation: balderdashy/waterline-schema#95 (comment)
1 parent c39c8c1 commit c4ace05

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed
 

‎concepts/ORM/Attributes.md

+71
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,77 @@ attributes: {
296296
> When using `unique: true` on an attribute with the `utf8mb4` character set in a MySQL database, you will need to set the column size manually via the [`columnType` property](https://sailsjs.com/documentation/concepts/models-and-orm/attributes#?columntype) to avoid a possible 'index too long' error. For example: `columnType: varchar(100) CHARACTER SET utf8mb4`.
297297
298298

299+
### Documenting Attributes
300+
301+
The following properties may be used to document model attributes.
302+
303+
For example:
304+
305+
```javascript
306+
attributes: {
307+
username: {
308+
type: 'string',
309+
description: 'Unique username for this user.',
310+
extendedDescription: `
311+
Username must be unique, may only contain alphanumeric characters and must start with a letter.
312+
313+
They are **optional** as users may use their email address to sign in.
314+
`,
315+
moreInfoUrl: 'https://docs.website.com/all-about-usernames',
316+
example: 'johnsmith'
317+
}
318+
}
319+
```
320+
321+
##### description
322+
323+
The `description` property may be used to provide a short text description of the attribute.
324+
Generally, it should be limited to ≤140 characters.
325+
326+
##### extendedDescription
327+
328+
The `extendedDescription` property should be used to provide an extended description of the attribute.
329+
In typical use cases this may include markdown e.g. where the model definitions are used to
330+
generate [OpenAPI/Swagger](https://swagger.io/) documentation.
331+
332+
##### moreInfoUrl
333+
334+
The `moreInfoUrl` property should be used to provide a link to an external reference containing
335+
more information in relation to the attribute.
336+
337+
##### example
338+
339+
The `example` property should be used to provide an example value for the attribute.
340+
This may be any JSON value that is consistent with the attributes `type`.
341+
342+
343+
### Custom Properties
344+
345+
When Waterline validates models at startup, it will report errors if invalid properties are
346+
set for attributes. In order to customize/extend Sails, the `meta` property may be used.
347+
348+
For example:
349+
350+
```javascript
351+
attributes: {
352+
username: {
353+
type: 'string',
354+
meta: {
355+
search: true, //< include this attribute in generic search index
356+
defaultSort: 'asc', //< when no sort specified, use this attribute in ascending order
357+
}
358+
}
359+
}
360+
```
361+
362+
363+
### List of Valid Attribute Properties
364+
365+
For reference, the list of all valid attribute properties may be found
366+
[here](https://github.com/balderdashy/waterline-schema/blob/master/accessible/valid-attribute-properties.js).
367+
368+
369+
299370
<!--
300371
301372
commented-out content at: https://gist.github.com/rachaelshaw/f10d70c73780d5087d4c936cdefd5648#2

0 commit comments

Comments
 (0)