{
  "title": "Account Numbers (v1.0.0)",
  "description": "Different representations of an account number.",
  "properties": {
    "masked": {
      "description": "A partial account number that does not contain all the digits of the full account number. This masked number appears in statements or in user experience presentation. It is sufficient for a user to differentiate this account from other accounts they hold, but is not sufficient for initiating transfers, etc. The first character is the mask character and is repeated; this does not indicate that the full account number is the same as the mask length. This value is derived and immutable.",
      "type": "string",
      "minLength": 8,
      "maxLength": 32,
      "readOnly": true,
      "example": "*************3210"
    },
    "full": {
      "description": "The full account number. This value only appears when `?unmasked=true` is passed on the `GET` request. Not included in the summary representation of the account that is included in account collection responses. This value is derived and immutable.",
      "type": "string",
      "minLength": 4,
      "maxLength": 17,
      "example": "9876543210",
      "readOnly": true
    }
  },
  "x-apiture-version": "1.0.0"
}