I think #CLML and @shinmera get this wrong:
You can't (well, shouldn't) do this in #CommonLisp :
(defclass my-array () ((actual-array) (element-types) (dimensions)))
because you end up with a garbage type. Instead I think:
(deftype arrayish (&optional type size) `(and (array type size) (satisfies some-predicate)))
This way you get a meaningful parameterised type that relates to array #types
Edit: Scroll down to @shinmera's commentary