Summary
Returns all forms
Description
Returns all JSON form documents that have previously been created.
Route
GET /json-forms/forms
Roles
admin
other
readonly
apiread
operator
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
forms |
object |
An array of form documents. |
Copied to Clipboard
[
{
"id": "62bf2e8333385420ffe7bdd7",
"createdBy": "admin@pronoghorn",
"lastUpdatedBy": "admin@pronghorn",
"struct": {
"type": "object",
"description": "",
"items": []
},
"tags": [],
"created": "2022-07-01T17:27:31.335Z",
"lastUpdated": "2022-07-01T17:27:31.335Z",
"name": "form-name",
"description": "",
"schema": {
"title": "form-name",
"description": "",
"type": "object",
"required": []
},
"version": "2022.1"
}
]
Copied to Clipboard
{
"title": "forms",
"type": "array",
"items": {
"$ref": "formDocument#/definitions/form"
},
"examples": [
[
{
"id": "62bf2e8333385420ffe7bdd7",
"createdBy": "admin@pronoghorn",
"lastUpdatedBy": "admin@pronghorn",
"struct": {
"type": "object",
"description": "",
"items": []
},
"bindingSchema": {},
"validationSchema": {},
"tags": [],
"created": "2022-07-01T17:27:31.335Z",
"lastUpdated": "2022-07-01T17:27:31.335Z",
"name": "form-name",
"description": "",
"schema": {
"title": "form-name",
"description": "",
"type": "object",
"required": [],
"properties": {}
},
"uiSchema": {},
"version": "2022.1"
}
]
]
}