diff --git a/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json b/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json new file mode 100644 index 0000000000000000000000000000000000000000..440b39202ebbf34b3d4af139f162a214a1481dcc --- /dev/null +++ b/ASP-IICS-Team/GetExternalCustomers/getexternalcustomers.json @@ -0,0 +1,168 @@ +{ + "swagger" : "2.0", + "info" : { + "description" : null, + "version" : "1.0.0", + "title" : null, + "termsOfService" : null, + "contact" : null, + "license" : null + }, + "host" : "api.wisc.edu", + "basePath" : "/finance", + "schemes" : [ "https" ], + "paths" : { + "/externalcustomers" : { + "get" : { + "tags" : [ "getexternalcustomers" ], + "summary" : null, + "description" : null, + "operationId" : "getexternalcustomers", + "produces" : [ "application/json" ], + "consumes" : [ "application/json" ], + "parameters" : [ ], + "responses" : { + "200" : { + "description" : "successful operation", + "schema" : { + "$ref" : "#/definitions/getexternalcustomers" + } + } + } + } + } + }, + "definitions" : { + "getexternalcustomers##data##attributes##address" : { + "properties" : { + "address_id" : { + "type" : "string" + }, + "address_line_1" : { + "type" : "string" + }, + "address_line_2" : { + "type" : "string" + }, + "address_line_3" : { + "type" : "string" + }, + "address_usage" : { + "type" : "string" + }, + "city" : { + "type" : "string" + }, + "country_code" : { + "type" : "string" + }, + "id" : { + "type" : "string" + }, + "state_code" : { + "type" : "string" + }, + "zip_code" : { + "type" : "string" + } + } + }, + "getexternalcustomers##data##attributes" : { + "properties" : { + "active" : { + "type" : "boolean" + }, + "address" : { + "type" : "array", + "items" : { + "$ref" : "#/definitions/getexternalcustomers##data##attributes##address" + } + }, + "name" : { + "type" : "string" + }, + "status" : { + "type" : "string" + } + } + }, + "getexternalcustomers##data##links" : { + "properties" : { + "self" : { + "type" : "string" + } + } + }, + "getexternalcustomers##data" : { + "properties" : { + "attributes" : { + "$ref" : "#/definitions/getexternalcustomers##data##attributes" + }, + "id" : { + "type" : "string" + }, + "links" : { + "$ref" : "#/definitions/getexternalcustomers##data##links" + }, + "type" : { + "type" : "string" + } + } + }, + "getexternalcustomers##links" : { + "properties" : { + "first" : { + "type" : "string" + }, + "last" : { + "type" : "string" + }, + "next" : { + "type" : "string" + }, + "prev" : { + "type" : "string" + }, + "self" : { + "type" : "string" + } + } + }, + "getexternalcustomers##meta" : { + "properties" : { + "pageNumber" : { + "type" : "number", + "format" : "int32" + }, + "pageSize" : { + "type" : "number", + "format" : "int32" + }, + "totalCount" : { + "type" : "number", + "format" : "int32" + }, + "totalPages" : { + "type" : "number", + "format" : "int32" + } + } + }, + "getexternalcustomers" : { + "properties" : { + "data" : { + "type" : "array", + "items" : { + "$ref" : "#/definitions/getexternalcustomers##data" + } + }, + "links" : { + "$ref" : "#/definitions/getexternalcustomers##links" + }, + "meta" : { + "$ref" : "#/definitions/getexternalcustomers##meta" + } + } + } + } +} \ No newline at end of file