Definition Item
|
|
|
|
|
Diagram
|
|
| Type |
object |
|
Properties
|
|
| Additional Properties |
true |
|
Used by
|
|
|
Source
|
"Item": {
"type": "object",
"required": [
"vault",
"category"
],
"properties": {
"category": {
"type": "string",
"enum": [
"SOCIAL_SECURITY_NUMBER",
"SECURE_NOTE",
"OUTDOOR_LICENSE",
"WIRELESS_ROUTER",
"API_CREDENTIAL",
"DRIVER_LICENSE",
"EMAIL_ACCOUNT",
"CREDIT_CARD",
"IDENTITY",
"MEMBERSHIP",
"SOFTWARE_LICENSE",
"BANK_ACCOUNT",
"PASSWORD",
"DATABASE",
"SERVER",
"CUSTOM",
"DOCUMENT",
"LOGIN",
"REWARD_PROGRAM",
"PASSPORT"
]
},
"createdAt": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"favorite": {
"default": false,
"type": "boolean"
},
"id": {
"type": "string",
"pattern": "^[\\da-z]{26}$"
},
"lastEditedBy": {
"type": "string",
"readOnly": true
},
"state": {
"readOnly": true,
"type": "string",
"enum": [
"ARCHIVED",
"DELETED"
]
},
"tags": {
"type": "array",
"items": {}
},
"title": {"type": "string"},
"updatedAt": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"urls": {
"type": "array",
"example": [
{
"href": "https://example.com",
"primary": true
},
{"href": "https://example.org"}
],
"items": {}
},
"vault": {
"type": "object",
"required": ["id"],
"properties": {}
},
"version": {"type": "integer"}
}
}
|
|
|
|
|
|
Definition category
|
|
|
|
|
Diagram
|
|
| Type |
string |
|
Enumeration
|
| Values
| |
| SOCIAL_SECURITY_NUMBER |
| SECURE_NOTE |
| OUTDOOR_LICENSE |
| WIRELESS_ROUTER |
| API_CREDENTIAL |
| DRIVER_LICENSE |
| EMAIL_ACCOUNT |
| CREDIT_CARD |
| IDENTITY |
| MEMBERSHIP |
| SOFTWARE_LICENSE |
| BANK_ACCOUNT |
| PASSWORD |
| DATABASE |
| SERVER |
| CUSTOM |
| DOCUMENT |
| LOGIN |
| REWARD_PROGRAM |
| PASSPORT |
|
|
Used by
|
|
|
Source
|
"category": {
"type": "string",
"enum": [
"SOCIAL_SECURITY_NUMBER",
"SECURE_NOTE",
"OUTDOOR_LICENSE",
"WIRELESS_ROUTER",
"API_CREDENTIAL",
"DRIVER_LICENSE",
"EMAIL_ACCOUNT",
"CREDIT_CARD",
"IDENTITY",
"MEMBERSHIP",
"SOFTWARE_LICENSE",
"BANK_ACCOUNT",
"PASSWORD",
"DATABASE",
"SERVER",
"CUSTOM",
"DOCUMENT",
"LOGIN",
"REWARD_PROGRAM",
"PASSPORT"
]
}
|
|
|
|
|
|
Definition createdAt
Definition favorite
Definition id
Definition lastEditedBy
Definition state
Definition tags
Definition tags/items
Definition title
Definition updatedAt
Definition urls
Definition urls/items
Definition href
Definition primary
Definition vault
Definition id
Definition version
|
|