Skip to content

Commit

Permalink
Add json schema org documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasyu888 committed Aug 13, 2023
1 parent a689a76 commit 7923ce3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion docs/build/html/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -473,10 +473,16 @@ <h2 id="J">J</h2>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="api/JsonSchema.html#synapseclient.services.json_schema.JsonSchemaService.json_schema_validation">json_schema_validation() (synapseclient.services.json_schema.JsonSchemaService method)</a>
</li>
<li><a href="api/JsonSchema.html#synapseclient.services.json_schema.JsonSchemaService">JsonSchemaService (class in synapseclient.services.json_schema)</a>
<li><a href="api/JsonSchema.html#synapseclient.services.json_schema.JsonSchemaOrganization">JsonSchemaOrganization (class in synapseclient.services.json_schema)</a>

<ul>
<li><a href="api/JsonSchema.html#synapseclient.services.json_schema.JsonSchemaService.JsonSchemaOrganization">(synapseclient.services.json_schema.JsonSchemaService attribute)</a>
</li>
</ul></li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="api/JsonSchema.html#synapseclient.services.json_schema.JsonSchemaService">JsonSchemaService (class in synapseclient.services.json_schema)</a>
</li>
<li><a href="api/JsonSchema.html#synapseclient.services.json_schema.JsonSchemaVersion">JsonSchemaVersion (class in synapseclient.services.json_schema)</a>

<ul>
Expand Down
Binary file modified docs/build/html/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/build/html/searchindex.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions synapseclient/services/json_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,12 @@ def create(


class JsonSchemaOrganization:
"""Json Schema Organization
:param name: Name of JSON schema organization
:type name: str
"""

def __init__(self, name: str) -> None:
self.name = name
self.id = None
Expand Down

0 comments on commit 7923ce3

Please sign in to comment.