You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2017/10/20 13:35:25 UTC

[kibble] 01/12: add yaml spec for OrgMembers object

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git

commit 25e1a7796659f0f81f0b449d82dafd6b794c9a8f
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Fri Oct 20 14:42:05 2017 +0200

    add yaml spec for OrgMembers object
    
    to be used for org membership management.
---
 api/yaml/openapi/components/schemas/OrgMembers.yaml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/api/yaml/openapi/components/schemas/OrgMembers.yaml b/api/yaml/openapi/components/schemas/OrgMembers.yaml
new file mode 100644
index 0000000..588e89f
--- /dev/null
+++ b/api/yaml/openapi/components/schemas/OrgMembers.yaml
@@ -0,0 +1,17 @@
+########################################################################
+# Organisation Member List                                             #
+########################################################################
+properties:
+  admins:
+    description: An array containing the IDs of the admins of this org
+    type: array
+    exammple: ['foo@bar', 'bar@foo']
+  members:
+    description: An array containing the IDs of the members of this org
+    type: array
+    exammple: ['foo@bar', 'bar@foo']
+required:
+- admins
+- members
+
+

-- 
To stop receiving notification emails like this one, please contact
"commits@kibble.apache.org" <co...@kibble.apache.org>.