Newer
Older
{
"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" : {
"/validate-funding" : {
"post" : {
"tags" : [ "validate-funding" ],
"summary" : null,
"description" : null,
"operationId" : "validate-funding",
"produces" : [ "application/vnd.api+json" ],
"consumes" : [ "application/vnd.api+json" ],
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
"parameters" : [ {
"name" : "data",
"in" : "query",
"description" : null,
"required" : false,
"type" : "object"
} ],
"responses" : {
"200" : {
"description" : "successful operation",
"schema" : {
"$ref" : "#/definitions/validate-funding"
}
}
}
}
}
},
"definitions" : {
"validate-funding##data##attributes##lines" : {
"properties" : {
"errors" : {
"type" : "string"
},
"valid" : {
"type" : "boolean"
}
}
},
"validate-funding##data##attributes" : {
"properties" : {
"journalErrors" : {
"type" : "string"
},
"lines" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/validate-funding##data##attributes##lines"
}
},
"valid" : {
"type" : "boolean"
}
}
},
"validate-funding##data" : {
"properties" : {
"attributes" : {
"$ref" : "#/definitions/validate-funding##data##attributes"
},
"id" : {
"type" : "string"
},
"type" : {
"type" : "string"
}
}
},
"validate-funding" : {
"properties" : {
"data" : {
"$ref" : "#/definitions/validate-funding##data"
}
}
}
}