Diagram
properties_Vault.html#/properties/Vault/properties/id properties_Vault.html#/properties/Vault/properties/name properties_Vault.html#/properties/Vault/properties/description properties_Vault.html#/properties/Vault/properties/attributeVersion properties_Vault.html#/properties/Vault/properties/contentVersion properties_Vault.html#/properties/Vault/properties/items properties_Vault.html#/properties/Vault/properties/type properties_Vault.html#/properties/Vault/properties/createdAt properties_Vault.html#/properties/Vault/properties/updatedAt diagram
Type object
Properties
Name Occurrence
id
name
description
attributeVersion
contentVersion
items
type
createdAt
updatedAt
optional
optional
optional
optional
optional
optional
optional
optional
optional
Used by
Schema
Vault
Source

 "Vault": {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^[\\da-z]{26}"
    },
    "name": {"type": "string"},
    "description": {"type": "string"},
    "attributeVersion": {
      "type": "integer",
      "description": "The vault version"
    },
    "contentVersion": {
      "type": "integer",
      "description": "The version of the vault contents"
    },
    "items": {
      "type": "integer",
      "description": "Number of active items in the vault"
    },
    "type": {
      "type": "string",
      "enum": [
        "PERSONAL",
        "TRANSFER",
        "USER_CREATED",
        "EVERYONE"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  }
}

Diagram
diagram
Type string
Constraints
Pattern : ^[\da-z]{26}

Used by
Schema
Vault
Vault/properties/id
Source

 "id": {
  "type": "string",
  "pattern": "^[\\da-z]{26}"
}

Diagram
diagram
Type string
Used by
Schema
Vault
Vault/properties/name
Source

 "name": {"type": "string"}

Diagram
diagram
Type string
Used by
Schema
Vault
Vault/properties/description
Source

 "description": {"type": "string"}

Annotations
Description  The vault version
Diagram
diagram
Type number
Used by
Schema
Vault
Vault/properties/attributeVersion
Source

 "attributeVersion": {
  "type": "integer",
  "description": "The vault version"
}

Annotations
Description  The version of the vault contents
Diagram
diagram
Type number
Used by
Schema
Vault
Vault/properties/contentVersion
Source

 "contentVersion": {
  "type": "integer",
  "description": "The version of the vault contents"
}

Annotations
Description  Number of active items in the vault
Diagram
diagram
Type number
Used by
Schema
Vault
Vault/properties/items
Source

 "items": {
  "type": "integer",
  "description": "Number of active items in the vault"
}

Diagram
diagram
Type string
Enumeration
Values
PERSONAL
TRANSFER
USER_CREATED
EVERYONE
Used by
Schema
Vault
Vault/properties/type
Source

 "type": {
  "type": "string",
  "enum": [
    "PERSONAL",
    "TRANSFER",
    "USER_CREATED",
    "EVERYONE"
  ]
}

Diagram
diagram
Type string
Constraints
Format : date-time
Used by
Schema
Vault
Vault/properties/createdAt
Source

 "createdAt": {
  "type": "string",
  "format": "date-time",
  "readOnly": true
}

Diagram
diagram
Type string
Constraints
Format : date-time
Used by
Schema
Vault
Vault/properties/updatedAt
Source

 "updatedAt": {
  "type": "string",
  "format": "date-time",
  "readOnly": true
}