{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://otp.sadeem-lab.com/schemas/bank_account.json",
	"description": "bank account model schema",
	"type": "object",
	"required": ["bank_name", "account_name", "account_number"],
	"properties": {
		"id": {
			"type": "string",
			"format": "uuid"
		},
		"bank_name": {
			"type": "object",
			"minProperties": 1
		},
		"account_name": {
			"type": "string",
			"minLength": 1,
			"maxLength": 255
		},
		"account_number": {
			"type": "string",
			"minLength": 1,
			"maxLength": 255
		},
		"iban": {
			"type": ["string", "null"],
			"minLength": 1,
			"maxLength": 255
		},
		"sort": {
			"type": "integer"
		},
		"is_disabled": {
			"type": "boolean"
		},
		"created_at": {
			"type": "string",
			"format": "date-time"
		},
		"updated_at": {
			"type": "string",
			"format": "date-time"
		}
	}
}
