{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://otp.sadeem-lab.com/schemas/charge_request.json",
    "description": "charge request model schema",
    "type": "object",
    "required": [
        "amount",
        "document_id"
    ],
    "properties": {
        "id": {
            "type": "string",
            "format": "uuid"
        },
        "amount": {
            "type": "number",
            "minimum": 1
        },
        "payment_method": {
            "$ref": "https://otp.sadeem-lab.com/schemas/properties/uuid_obj_null.json"
        },
        "bank_account": {
            "$ref": "https://otp.sadeem-lab.com/schemas/properties/uuid_obj_null.json"
        },
        "document_id": {
            "type": "string",
            "format": "uuid"
        },
        "notes": {
            "type": [
                "string",
                "null"
            ],
            "minLength": 1,
            "maxLength": 5000
        },
        "created_at": {
            "type": "string",
            "format": "date-time"
        },
        "updated_at": {
            "type": "string",
            "format": "date-time"
        }
    }
}
