Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • interop/iics/iics-swagger-file-public-repository
  • BETTY.THOMPSON/iics-swagger-file-public-repository
  • JEROME.WATSON/iics-swagger-file-public-repository
  • HVARDHAN/iics-swagger-file-public-repository
  • PATRICK.ROE/iics-swagger-file-public-repository
  • SAJIDA.SIDDIQUI/iics-swagger-file-public-repository
  • jpmarkey/iics-swagger-file-public-repository
  • MATT.GRACZ/iics-swagger-file-public-repository
8 results
Show changes
Showing
with 3248 additions and 0 deletions
{
"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" : {
"/costCenters" : {
"get" : {
"tags" : [ "getCostCenters_paging" ],
"summary" : null,
"description" : null,
"operationId" : "getCostCenters_paging",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ {
"name" : "page[number]",
"in" : "query",
"description" : null,
"required" : false,
"type" : "number",
"format" : "int32"
}, {
"name" : "page[size]",
"in" : "query",
"description" : null,
"required" : false,
"type" : "number",
"format" : "int32"
} ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getCostCenters_paging"
}
}
}
}
}
},
"definitions" : {
"getCostCenters_paging##data##attributes##leadershipRoleAssignees" : {
"properties" : {
"id" : {
"type" : "string"
}
}
},
"getCostCenters_paging##data##attributes" : {
"properties" : {
"company" : {
"type" : "string"
},
"leadershipRoleAssignees" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getCostCenters_paging##data##attributes##leadershipRoleAssignees"
}
},
"managerId" : {
"type" : "string"
},
"name" : {
"type" : "string"
},
"parentHierarchyId" : {
"type" : "string"
}
}
},
"getCostCenters_paging##data##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getCostCenters_paging##data##meta" : {
"properties" : {
"dttmLoaded" : {
"type" : "string"
}
}
},
"getCostCenters_paging##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getCostCenters_paging##data##attributes"
},
"id" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/getCostCenters_paging##data##links"
},
"meta" : {
"$ref" : "#/definitions/getCostCenters_paging##data##meta"
},
"type" : {
"type" : "string"
}
}
},
"getCostCenters_paging##links" : {
"properties" : {
"first" : {
"type" : "string"
},
"last" : {
"type" : "string"
},
"next" : {
"type" : "string"
},
"prev" : {
"type" : "string"
},
"self" : {
"type" : "string"
}
}
},
"getCostCenters_paging##meta" : {
"properties" : {
"pageNumber" : {
"type" : "number",
"format" : "int32"
},
"pageSize" : {
"type" : "number",
"format" : "int32"
},
"totalCount" : {
"type" : "number",
"format" : "int32"
},
"totalPages" : {
"type" : "number",
"format" : "int32"
}
}
},
"getCostCenters_paging" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getCostCenters_paging##data"
}
},
"links" : {
"$ref" : "#/definitions/getCostCenters_paging##links"
},
"meta" : {
"$ref" : "#/definitions/getCostCenters_paging##meta"
}
}
}
}
}
\ No newline at end of file
{
"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
{
"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" : [ {
"name" : "name",
"in" : "query",
"description" : null,
"required" : false,
"type" : "string"
}, {
"name" : "id",
"in" : "query",
"description" : null,
"required" : false,
"type" : "string"
} ],
"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
{
"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" : [ {
"name" : "name",
"in" : "query",
"description" : null,
"required" : false,
"type" : "string"
} ],
"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
{
"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?filter[name]" : {
"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
{
"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" : [ {
"name" : "name",
"in" : "query",
"description" : null,
"required" : false,
"type" : "string"
} ],
"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##bill_to_contacts" : {
"properties" : {
"email" : {
"type" : "string"
},
"name" : {
"type" : "string"
},
"reference_id" : {
"type" : "string"
}
}
},
"getexternalcustomers##data##attributes" : {
"properties" : {
"active" : {
"type" : "boolean"
},
"address" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getexternalcustomers##data##attributes##address"
}
},
"bill_to_contacts" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getexternalcustomers##data##attributes##bill_to_contacts"
}
},
"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
{
"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" : {
"/journals" : {
"get" : {
"tags" : [ "getjournals" ],
"summary" : null,
"description" : null,
"operationId" : "getjournals",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getjournals"
}
}
}
}
}
},
"definitions" : {
"getjournals##data##attributes##lines" : {
"properties" : {
"activity" : {
"type" : "string"
},
"budgetDate" : {
"type" : "string"
},
"company" : {
"type" : "string"
},
"costCenter" : {
"type" : "string"
},
"creditAmount" : {
"type" : "number"
},
"currency" : {
"type" : "string"
},
"debitAmount" : {
"type" : "number"
},
"excludeFromSpendReport" : {
"type" : "boolean"
},
"functionId" : {
"type" : "string"
},
"fund" : {
"type" : "string"
},
"gift" : {
"type" : "string"
},
"grant" : {
"type" : "string"
},
"ledgerAccount" : {
"type" : "string"
},
"lineId" : {
"type" : "string"
},
"lineNumber" : {
"type" : "number"
},
"lineOrder" : {
"type" : "string"
},
"location" : {
"type" : "string"
},
"memo" : {
"type" : "string"
},
"objectClass" : {
"type" : "string"
},
"program" : {
"type" : "string"
},
"project" : {
"type" : "string"
},
"projectType" : {
"type" : "string"
},
"revenueCategory" : {
"type" : "string"
},
"spendCategory" : {
"type" : "string"
},
"sponsor" : {
"type" : "string"
},
"supplier" : {
"type" : "string"
}
}
},
"getjournals##data##attributes" : {
"properties" : {
"accountingDate" : {
"type" : "string"
},
"book" : {
"type" : "string"
},
"company" : {
"type" : "string"
},
"creationDate" : {
"type" : "string"
},
"externalReferenceId" : {
"type" : "string"
},
"journalNumber" : {
"type" : "string"
},
"journalSource" : {
"type" : "string"
},
"ledger" : {
"type" : "string"
},
"ledgerPeriod" : {
"type" : "string"
},
"lines" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getjournals##data##attributes##lines"
}
},
"memo" : {
"type" : "string"
},
"sequenceNumber" : {
"type" : "string"
},
"status" : {
"type" : "string"
},
"totalCredits" : {
"type" : "number",
"format" : "double"
},
"totalDebits" : {
"type" : "number",
"format" : "double"
},
"transactionDate" : {
"type" : "string"
},
"updatedDate" : {
"type" : "string"
}
}
},
"getjournals##data##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getjournals##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getjournals##data##attributes"
},
"id" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/getjournals##data##links"
},
"type" : {
"type" : "string"
}
}
},
"getjournals##links" : {
"properties" : {
"first" : {
"type" : "string"
},
"last" : {
"type" : "string"
},
"next" : {
"type" : "string"
},
"prev" : {
"type" : "string"
},
"self" : {
"type" : "string"
}
}
},
"getjournals##meta" : {
"properties" : {
"pageNumber" : {
"type" : "number",
"format" : "int32"
},
"pageSize" : {
"type" : "number",
"format" : "int32"
},
"totalCount" : {
"type" : "number",
"format" : "int32"
},
"totalPages" : {
"type" : "number",
"format" : "int32"
}
}
},
"getjournals" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getjournals##data"
}
},
"links" : {
"$ref" : "#/definitions/getjournals##links"
},
"meta" : {
"$ref" : "#/definitions/getjournals##meta"
}
}
}
}
}
\ No newline at end of file
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/" : {
"get" : {
"tags" : [ "getPeople" ],
"summary" : null,
"description" : null,
"operationId" : "getPeople",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getPeople"
}
}
}
}
}
},
"definitions" : {
"getPeople##data##attributes" : {
"properties" : {
"emailAddress" : {
"type" : "string"
},
"firstName" : {
"type" : "string"
},
"lastName" : {
"type" : "string"
},
"officeAddress" : {
"type" : "string"
},
"officePhoneNumber" : {
"type" : "string"
}
}
},
"getPeople##data##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getPeople##data##meta" : {
"properties" : {
"ferpa" : {
"type" : "boolean"
}
}
},
"getPeople##data##relationships##addresses##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##addresses##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##addresses" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeople##data##relationships##addresses##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeople##data##relationships##addresses##links"
}
}
},
"getPeople##data##relationships##identifiers##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##identifiers##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##identifiers" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeople##data##relationships##identifiers##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeople##data##relationships##identifiers##links"
}
}
},
"getPeople##data##relationships##jobs##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##jobs##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##jobs" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeople##data##relationships##jobs##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeople##data##relationships##jobs##links"
}
}
},
"getPeople##data##relationships##names##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##names" : {
"properties" : {
"data" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/getPeople##data##relationships##names##links"
}
}
},
"getPeople##data##relationships##phoneNumbers##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##phoneNumbers##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##phoneNumbers" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeople##data##relationships##phoneNumbers##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeople##data##relationships##phoneNumbers##links"
}
}
},
"getPeople##data##relationships##wiscard##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeople##data##relationships##wiscard" : {
"properties" : {
"data" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/getPeople##data##relationships##wiscard##links"
}
}
},
"getPeople##data##relationships" : {
"properties" : {
"addresses" : {
"$ref" : "#/definitions/getPeople##data##relationships##addresses"
},
"identifiers" : {
"$ref" : "#/definitions/getPeople##data##relationships##identifiers"
},
"jobs" : {
"$ref" : "#/definitions/getPeople##data##relationships##jobs"
},
"names" : {
"$ref" : "#/definitions/getPeople##data##relationships##names"
},
"phoneNumbers" : {
"$ref" : "#/definitions/getPeople##data##relationships##phoneNumbers"
},
"wiscard" : {
"$ref" : "#/definitions/getPeople##data##relationships##wiscard"
}
}
},
"getPeople##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getPeople##data##attributes"
},
"id" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/getPeople##data##links"
},
"meta" : {
"$ref" : "#/definitions/getPeople##data##meta"
},
"relationships" : {
"$ref" : "#/definitions/getPeople##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getPeople##links" : {
"properties" : {
"next" : {
"type" : "string"
},
"self" : {
"type" : "string"
}
}
},
"getPeople" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeople##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeople##links"
}
}
}
}
}
\ No newline at end of file
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/{id}/addresses" : {
"get" : {
"tags" : [ "getPeopleAddresses" ],
"summary" : null,
"description" : null,
"operationId" : "getPeopleAddresses",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ {
"name" : "id",
"in" : "path",
"description" : null,
"required" : false,
"type" : "string"
} ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getPeopleAddresses"
}
}
}
}
}
},
"definitions" : {
"getPeopleAddresses##data##attributes" : {
"properties" : {
"addressType" : {
"type" : "string"
},
"city" : {
"type" : "string"
},
"country" : {
"type" : "string"
},
"county" : {
"type" : "string"
},
"line1" : {
"type" : "string"
},
"line2" : {
"type" : "string"
},
"line3" : {
"type" : "string"
},
"line4" : {
"type" : "string"
},
"postalCode" : {
"type" : "string"
},
"source" : {
"type" : "string"
},
"state" : {
"type" : "string"
}
}
},
"getPeopleAddresses##data##relationships##person##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeopleAddresses##data##relationships##person##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeopleAddresses##data##relationships##person" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getPeopleAddresses##data##relationships##person##data"
},
"links" : {
"$ref" : "#/definitions/getPeopleAddresses##data##relationships##person##links"
}
}
},
"getPeopleAddresses##data##relationships" : {
"properties" : {
"person" : {
"$ref" : "#/definitions/getPeopleAddresses##data##relationships##person"
}
}
},
"getPeopleAddresses##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getPeopleAddresses##data##attributes"
},
"id" : {
"type" : "string"
},
"relationships" : {
"$ref" : "#/definitions/getPeopleAddresses##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getPeopleAddresses##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getPeopleAddresses" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeopleAddresses##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeopleAddresses##links"
}
}
}
}
}
\ No newline at end of file
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/{id}/identifiers" : {
"get" : {
"tags" : [ "getPeopleIdentifiers" ],
"summary" : null,
"description" : null,
"operationId" : "getPeopleIdentifiers",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ {
"name" : "id",
"in" : "path",
"description" : null,
"required" : false,
"type" : "string"
} ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getPeopleIdentifiers"
}
}
}
}
}
},
"definitions" : {
"getPeopleIdentifiers##data##attributes" : {
"properties" : {
"current" : {
"type" : "boolean"
},
"name" : {
"type" : "string"
},
"institution" : {
"type" : "string"
},
"source" : {
"type" : "string"
},
"value" : {
"type" : "string"
}
}
},
"getPeopleIdentifiers##data##relationships##person##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeopleIdentifiers##data##relationships##person##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeopleIdentifiers##data##relationships##person" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getPeopleIdentifiers##data##relationships##person##data"
},
"links" : {
"$ref" : "#/definitions/getPeopleIdentifiers##data##relationships##person##links"
}
}
},
"getPeopleIdentifiers##data##relationships" : {
"properties" : {
"person" : {
"$ref" : "#/definitions/getPeopleIdentifiers##data##relationships##person"
}
}
},
"getPeopleIdentifiers##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getPeopleIdentifiers##data##attributes"
},
"id" : {
"type" : "string"
},
"relationships" : {
"$ref" : "#/definitions/getPeopleIdentifiers##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getPeopleIdentifiers##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getPeopleIdentifiers" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeopleIdentifiers##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeopleIdentifiers##links"
}
}
}
}
}
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/{id}/jobs" : {
"get" : {
"tags" : [ "getPeopleJobs" ],
"summary" : null,
"description" : null,
"operationId" : "getPeopleJobs",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ {
"name" : "id",
"in" : "path",
"description" : null,
"required" : false,
"type" : "string"
} ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getPeopleJobs"
}
}
}
}
}
},
"definitions" : {
"getPeopleJobs##data##attributes" : {
"properties" : {
"beginDate" : {
"type" : "string"
},
"businessTitle" : {
"type" : "string"
},
"costCenterId" : {
"type" : "string"
},
"current" : {
"type" : "boolean"
},
"departmentUnit" : {
"type" : "string"
},
"division" : {
"type" : "string"
},
"divisionCode" : {
"type" : "string"
},
"effectiveDate" : {
"type" : "string"
},
"employeeCategory" : {
"type" : "string"
},
"employeeCategoryCode" : {
"type" : "string"
},
"endDate" : {
"type" : "string"
},
"fullTimeEquivalent" : {
"type" : "string"
},
"jobCode" : {
"type" : "string"
},
"payBasis" : {
"type" : "string"
},
"position" : {
"type" : "string"
},
"source" : {
"type" : "string"
},
"supervisoryOrganizationId" : {
"type" : "string"
},
"title" : {
"type" : "string"
}
}
},
"getPeopleJobs##data##relationships##person##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeopleJobs##data##relationships##person##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeopleJobs##data##relationships##person" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getPeopleJobs##data##relationships##person##data"
},
"links" : {
"$ref" : "#/definitions/getPeopleJobs##data##relationships##person##links"
}
}
},
"getPeopleJobs##data##relationships##supervisor##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getPeopleJobs##data##relationships##supervisor##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getPeopleJobs##data##relationships##supervisor" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getPeopleJobs##data##relationships##supervisor##data"
},
"links" : {
"$ref" : "#/definitions/getPeopleJobs##data##relationships##supervisor##links"
}
}
},
"getPeopleJobs##data##relationships" : {
"properties" : {
"person" : {
"$ref" : "#/definitions/getPeopleJobs##data##relationships##person"
},
"supervisor" : {
"$ref" : "#/definitions/getPeopleJobs##data##relationships##supervisor"
}
}
},
"getPeopleJobs##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getPeopleJobs##data##attributes"
},
"id" : {
"type" : "string"
},
"relationships" : {
"$ref" : "#/definitions/getPeopleJobs##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getPeopleJobs##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getPeopleJobs" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getPeopleJobs##data"
}
},
"links" : {
"$ref" : "#/definitions/getPeopleJobs##links"
}
}
}
}
}
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "mock.api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/50/identifiers" : {
"get" : {
"tags" : [ "getpeople_netid" ],
"summary" : null,
"description" : null,
"operationId" : "getpeople_netid",
"produces" : [ "application/vnd.api+json" ],
"consumes" : [ "application/vnd.api+json" ],
"parameters" : [ ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getpeople_netid"
}
}
}
}
}
},
"definitions" : {
"getpeople_netid##data##attributes" : {
"properties" : {
"current" : {
"type" : "boolean"
},
"name" : {
"type" : "string"
},
"source" : {
"type" : "string"
},
"value" : {
"type" : "string"
}
}
},
"getpeople_netid##data##relationships##person##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_netid##data##relationships##person##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_netid##data##relationships##person" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getpeople_netid##data##relationships##person##data"
},
"links" : {
"$ref" : "#/definitions/getpeople_netid##data##relationships##person##links"
}
}
},
"getpeople_netid##data##relationships" : {
"properties" : {
"person" : {
"$ref" : "#/definitions/getpeople_netid##data##relationships##person"
}
}
},
"getpeople_netid##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getpeople_netid##data##attributes"
},
"id" : {
"type" : "string"
},
"relationships" : {
"$ref" : "#/definitions/getpeople_netid##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_netid##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getpeople_netid" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_netid##data"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_netid##links"
}
}
}
}
}
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "mock.api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/50/identifiers" : {
"get" : {
"tags" : [ "getpeople_w_netid" ],
"summary" : null,
"description" : null,
"operationId" : "getpeople_w_netid",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getpeople_w_netid"
}
}
}
}
}
},
"definitions" : {
"getpeople_w_netid##data##attributes" : {
"properties" : {
"emailAddress" : {
"type" : "string"
},
"firstName" : {
"type" : "string"
},
"lastName" : {
"type" : "string"
},
"officeAddress" : {
"type" : "string"
},
"officePhoneNumber" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##meta" : {
"properties" : {
"ferpa" : {
"type" : "boolean"
},
"ferpaAttributes" : {
"type" : "array",
"items" : {
"type" : "string"
}
},
"privateAttributes" : {
"type" : "array",
"items" : {
"type" : "string"
}
}
}
},
"getpeople_w_netid##data##relationships##addresses##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##addresses##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##addresses" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##addresses##data"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##addresses##links"
}
}
},
"getpeople_w_netid##data##relationships##identifiers##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##identifiers##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##identifiers" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##identifiers##data"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##identifiers##links"
}
}
},
"getpeople_w_netid##data##relationships##jobs##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##jobs##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##jobs" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##jobs##data"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##jobs##links"
}
}
},
"getpeople_w_netid##data##relationships##names##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##names##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##names" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##names##data"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##names##links"
}
}
},
"getpeople_w_netid##data##relationships##phoneNumbers##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##phoneNumbers##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##phoneNumbers" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##phoneNumbers##data"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##phoneNumbers##links"
}
}
},
"getpeople_w_netid##data##relationships##wiscard##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##wiscard##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_w_netid##data##relationships##wiscard" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##wiscard##data"
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##wiscard##links"
}
}
},
"getpeople_w_netid##data##relationships" : {
"properties" : {
"addresses" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##addresses"
},
"identifiers" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##identifiers"
},
"jobs" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##jobs"
},
"names" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##names"
},
"phoneNumbers" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##phoneNumbers"
},
"wiscard" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships##wiscard"
}
}
},
"getpeople_w_netid##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getpeople_w_netid##data##attributes"
},
"id" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##data##links"
},
"meta" : {
"$ref" : "#/definitions/getpeople_w_netid##data##meta"
},
"relationships" : {
"$ref" : "#/definitions/getpeople_w_netid##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##included##attributes" : {
"properties" : {
"current" : {
"type" : "boolean"
},
"name" : {
"type" : "string"
},
"source" : {
"type" : "string"
},
"value" : {
"type" : "string"
}
}
},
"getpeople_w_netid##included##relationships##person##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##included##relationships##person##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_w_netid##included##relationships##person" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getpeople_w_netid##included##relationships##person##data"
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##included##relationships##person##links"
}
}
},
"getpeople_w_netid##included##relationships" : {
"properties" : {
"person" : {
"$ref" : "#/definitions/getpeople_w_netid##included##relationships##person"
}
}
},
"getpeople_w_netid##included" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getpeople_w_netid##included##attributes"
},
"id" : {
"type" : "string"
},
"relationships" : {
"$ref" : "#/definitions/getpeople_w_netid##included##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_w_netid##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getpeople_w_netid" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_w_netid##data"
}
},
"included" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_w_netid##included"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_w_netid##links"
}
}
}
}
}
\ No newline at end of file
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "mock.api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/{id}/identifiers?filter[name]=netId" : {
"get" : {
"tags" : [ "getpeople_with_netid" ],
"summary" : null,
"description" : null,
"operationId" : "getpeople_with_netid",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ {
"name" : "id",
"in" : "path",
"description" : null,
"required" : false,
"type" : "string"
} ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/getpeople_with_netid"
}
}
}
}
}
},
"definitions" : {
"getpeople_with_netid##data##attributes" : {
"properties" : {
"current" : {
"type" : "boolean"
},
"name" : {
"type" : "string"
},
"source" : {
"type" : "string"
},
"value" : {
"type" : "string"
}
}
},
"getpeople_with_netid##data##relationships##person##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_with_netid##data##relationships##person##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"getpeople_with_netid##data##relationships##person" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/getpeople_with_netid##data##relationships##person##data"
},
"links" : {
"$ref" : "#/definitions/getpeople_with_netid##data##relationships##person##links"
}
}
},
"getpeople_with_netid##data##relationships" : {
"properties" : {
"person" : {
"$ref" : "#/definitions/getpeople_with_netid##data##relationships##person"
}
}
},
"getpeople_with_netid##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/getpeople_with_netid##data##attributes"
},
"id" : {
"type" : "string"
},
"relationships" : {
"$ref" : "#/definitions/getpeople_with_netid##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"getpeople_with_netid##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"getpeople_with_netid" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/getpeople_with_netid##data"
}
},
"links" : {
"$ref" : "#/definitions/getpeople_with_netid##links"
}
}
}
}
}
\ No newline at end of file
@echo off
echo Submit Customer Invoice
echo Restrictions,Required,Optional,Required,Required,Optional,Optional,Optional
echo Format,Text,Text,Date,Program_ID,Cost_Center_ID,Fund_ID,Function_ID
echo Fields,Header Key,Line Key,Fiscal Time Interval*,Program,Cost Center,Fund,Function
\ No newline at end of file
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "mock.api.wisc.edu",
"basePath" : "/",
"schemes" : [ "https" ],
"paths" : {
"/People" : {
"get" : {
"tags" : [ "SAS_MockAPI_GetPeople" ],
"summary" : null,
"description" : null,
"operationId" : "SAS_MockAPI_GetPeople",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople"
}
}
}
}
}
},
"definitions" : {
"SAS_MockAPI_GetPeople##data##attributes" : {
"properties" : {
"emailAddress" : {
"type" : "string"
},
"firstName" : {
"type" : "string"
},
"lastName" : {
"type" : "string"
},
"officeAddress" : {
"type" : "string"
},
"officePhoneNumber" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##meta" : {
"properties" : {
"ferpa" : {
"type" : "boolean"
},
"ferpaAttributes" : {
"type" : "array",
"items" : {
"type" : "string"
}
},
"privateAttributes" : {
"type" : "array",
"items" : {
"type" : "string"
}
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##identifiers##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##identifiers##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##identifiers" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##identifiers##data"
}
},
"links" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##identifiers##links"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##jobs##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##jobs##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##jobs" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##jobs##data"
}
},
"links" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##jobs##links"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##names##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##names##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##names" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##names##data"
}
},
"links" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##names##links"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##wiscard##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##wiscard" : {
"properties" : {
"data" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##wiscard##links"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships" : {
"properties" : {
"identifiers" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##identifiers"
},
"jobs" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##jobs"
},
"names" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##names"
},
"wiscard" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships##wiscard"
}
}
},
"SAS_MockAPI_GetPeople##data##relationships##wiscard##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##attributes"
},
"id" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##links"
},
"meta" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##meta"
},
"relationships" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"SAS_MockAPI_GetPeople" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##data"
}
},
"links" : {
"$ref" : "#/definitions/SAS_MockAPI_GetPeople##links"
}
}
}
}
}
\ No newline at end of file
{
"swagger" : "2.0",
"info" : {
"description" : null,
"version" : "1.0.0",
"title" : null,
"termsOfService" : null,
"contact" : null,
"license" : null
},
"host" : "mock.api.wisc.edu",
"basePath" : "/people",
"schemes" : [ "https" ],
"paths" : {
"/" : {
"get" : {
"tags" : [ "GetPeople" ],
"summary" : null,
"description" : null,
"operationId" : "GetPeople",
"produces" : [ "application/json" ],
"consumes" : [ "application/json" ],
"parameters" : [ ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/GetPeople"
}
}
}
}
}
},
"definitions" : {
"GetPeople##data##attributes" : {
"properties" : {
"emailAddress" : {
"type" : "string"
},
"firstName" : {
"type" : "string"
},
"lastName" : {
"type" : "string"
},
"officeAddress" : {
"type" : "string"
},
"officePhoneNumber" : {
"type" : "string"
}
}
},
"GetPeople##data##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"GetPeople##data##meta" : {
"properties" : {
"ferpa" : {
"type" : "boolean"
},
"ferpaAttributes" : {
"type" : "array",
"items" : {
"type" : "string"
}
},
"privateAttributes" : {
"type" : "array",
"items" : {
"type" : "string"
}
}
}
},
"GetPeople##data##relationships##identifiers##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"GetPeople##data##relationships##identifiers##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"GetPeople##data##relationships##identifiers" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/GetPeople##data##relationships##identifiers##data"
}
},
"links" : {
"$ref" : "#/definitions/GetPeople##data##relationships##identifiers##links"
}
}
},
"GetPeople##data##relationships##jobs##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"GetPeople##data##relationships##jobs##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"GetPeople##data##relationships##jobs" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/GetPeople##data##relationships##jobs##data"
}
},
"links" : {
"$ref" : "#/definitions/GetPeople##data##relationships##jobs##links"
}
}
},
"GetPeople##data##relationships##names##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"GetPeople##data##relationships##names##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"GetPeople##data##relationships##names" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/GetPeople##data##relationships##names##data"
}
},
"links" : {
"$ref" : "#/definitions/GetPeople##data##relationships##names##links"
}
}
},
"GetPeople##data##relationships##wiscard##links" : {
"properties" : {
"related" : {
"type" : "string"
}
}
},
"GetPeople##data##relationships##wiscard" : {
"properties" : {
"data" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/GetPeople##data##relationships##wiscard##links"
}
}
},
"GetPeople##data##relationships" : {
"properties" : {
"identifiers" : {
"$ref" : "#/definitions/GetPeople##data##relationships##identifiers"
},
"jobs" : {
"$ref" : "#/definitions/GetPeople##data##relationships##jobs"
},
"names" : {
"$ref" : "#/definitions/GetPeople##data##relationships##names"
},
"wiscard" : {
"$ref" : "#/definitions/GetPeople##data##relationships##wiscard"
}
}
},
"GetPeople##data##relationships##wiscard##data" : {
"properties" : {
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"GetPeople##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/GetPeople##data##attributes"
},
"id" : {
"type" : "string"
},
"links" : {
"$ref" : "#/definitions/GetPeople##data##links"
},
"meta" : {
"$ref" : "#/definitions/GetPeople##data##meta"
},
"relationships" : {
"$ref" : "#/definitions/GetPeople##data##relationships"
},
"type" : {
"type" : "string"
}
}
},
"GetPeople##links" : {
"properties" : {
"self" : {
"type" : "string"
}
}
},
"GetPeople" : {
"properties" : {
"data" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/GetPeople##data"
}
},
"links" : {
"$ref" : "#/definitions/GetPeople##links"
}
}
}
}
}
\ No newline at end of file