Skip to content

DescribeNamespace

Description

      description: |
        Describe the detailed information for namespace `id`.

Request Schema

    DescribeNamespaceRequest:
      type: object
      properties:
        id:
          type: array
          items:
            type: string

Response Schema

    DescribeNamespaceResponse:
      type: object
      properties:
        properties:
          type: object
          description:
            Properties stored on the namespace, if supported by the server.
            If the server does not support namespace properties, it should return null for this field.
            If namespace properties are supported, but none are set, it should return an empty object.
          additionalProperties:
            type: string
          example: { "owner": "Ralph", 'created_at': '1452120468' }
          default: { }
          nullable: true