A proper alist whose every key is an atom.
(json-simple-alist-p x) → *
Function:
(defun json-simple-alist-p (x) (declare (xargs :guard t)) (let ((__function__ 'json-simple-alist-p)) (declare (ignorable __function__)) (if (atom x) (not x) (and (consp (car x)) (atom (caar x)) (json-simple-alist-p (cdr x))))))