Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added minesToTapPersonModel.ods
khazelton committed Oct 27, 2020
1 parent c2e872b commit 0663c8d
Showing 3 changed files with 67 additions and 3 deletions.
Binary file added schema/MinestoTapPersonDataModel.ods
Binary file not shown.
5 changes: 2 additions & 3 deletions schema/bannerSoMjsonSchema.json
@@ -2,8 +2,8 @@
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://id.internet2.edu/schema",
"type": "object",
"title": "Minimal Registry Person Schema",
"description": "Full representation of the Minimal Registry Person Schema in JSON",
"title": "Banner Person Schema",
"description": "Full representation of the Banner Registry Person from TAP Person Schema with SoM extensions in JSON",
"default": {},
"additionalProperties": true,
"required": [
@@ -803,4 +803,3 @@
}
}
}

65 changes: 65 additions & 0 deletions schema/minesToTapPersonModel.ods
@@ -0,0 +1,65 @@
openapi: 3.0.0
servers:
# Added by API Auto Mocking Plugin
- description: SwaggerHub API Auto Mocking
url: https://virtserver.swaggerhub.com/TIER_API_and_Schema/BannerPerson/1.0.0
info:
version: 1.0.0
title: SoM Banner Person API
description: >-
Full representation of the Banner Registry Person from TAP Person Schema with SoM extensions.
security:
- accessCode:
- read
- write
paths:
/example:
get:
summary: Get all banner person table entries
description: This operation supports pagination
parameters:
- $ref: '#/components/parameters/offsetParam'
- $ref: '#/components/parameters/limitParam'
responses:
'200':
description: OK

/ping:
get:
summary: Server heartbeat operation
description: >-
This operation shows how to override the global security defined above,
as we want to open it up for all users.
security: []
responses:
'200':
description: OK
components:
schemas: {}
securitySchemes:
accessCode:
type: oauth2
flows:
authorizationCode:
authorizationUrl: 'http://example.com/oauth/auth'
tokenUrl: 'http://example.com/oauth/token'
scopes:
write: allows modifying resources
read: allows reading resources
parameters:
offsetParam:
name: offset
in: query
description: "number of items to skip"
required: true
schema:
type: integer
format: int32
limitParam:
name: limit
in: query
description: "max records to return"
required: true
schema:
type: integer
format: int32

0 comments on commit 0663c8d

Please sign in to comment.