stevenzwu commented on code in PR #12584:
URL: https://github.com/apache/iceberg/pull/12584#discussion_r2963555810


##########
open-api/rest-catalog-open-api.yaml:
##########
@@ -2081,11 +2134,34 @@ components:
 
     Namespace:
       description: Reference to one or more levels of a namespace
+      allOf:
+        - $ref: '#/components/schemas/CatalogObjectIdentifier'
+      example: [ "accounting", "tax" ]
+
+    CatalogObjectIdentifier:
+      describe: Reference to a named object in the catalog, such as namespace, 
table, or view.
       type: array
       items:
         type: string
       example: [ "accounting", "tax" ]
 
+    CatalogObjectUuid:
+      description: Identify a table or view by its uuid.
+      type: object
+      required:
+        - uuid
+        - type
+      properties:
+        uuid:
+          type: string
+          description: The UUID of the catalog object
+          example: "123e4567-e89b-12d3-a456-426614174000"
+        type:

Review Comment:
   just note for the catalog object type here for linking purpose.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to