encoding/openapi: encode title, version, and contact as fields

This replaces the attributes encoding.

As it now consults regular fields as values, this requires
that schemas be encoded as definitions.

Modified Instance.Doc to also fetch doc comments for
files that do not have a package.

This exposed a bug where default values were not made
concrete.

Issue #56

Change-Id: I31572ac0a09eecca23f6c632fb9c9731a9bdd7d2
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/5440
Reviewed-by: Marcel van Lohuizen <mpvl@google.com>
diff --git a/encoding/openapi/testdata/oneof.cue b/encoding/openapi/testdata/oneof.cue
index a78285d..95935ac 100644
--- a/encoding/openapi/testdata/oneof.cue
+++ b/encoding/openapi/testdata/oneof.cue
@@ -1,3 +1,7 @@
+// OpenAPI title.
+
+$version: "v1alpha1"
+
 T :: {
 	shared: int
 }
@@ -17,7 +21,7 @@
 
 MyInt :: int
 
-Foo: {
+Foo :: {
 	include: T
 	exclude: [...T]
 	count: MyInt