For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTConvert YANG to JSON schema
        • POSTCreate a JSON form
        • POSTDecode an encoded JSON schema
        • DELDelete a forms
        • GETFind a form
        • POSTImport form documents
        • GETReturn all forms
        • PUTUpdate a form
        • POSTValidate data against a schema
        • POSTValidate form data against its schema
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceJSON Forms

Return all forms

GET
http://localhost:3000/json-forms/forms
GET
/json-forms/forms
$curl http://localhost:3000/json-forms/forms \
> -u "<username>:<password>"
1[
2 {
3 "created": "2022-07-01T17:27:31.335Z",
4 "createdBy": "admin@pronoghorn",
5 "lastUpdated": "2022-07-01T17:27:31.335Z",
6 "lastUpdatedBy": "admin@pronghorn",
7 "name": "form-name",
8 "description": "",
9 "struct": {
10 "type": "object",
11 "items": []
12 },
13 "schema": {
14 "type": "object",
15 "title": "form-name",
16 "description": "",
17 "required": [],
18 "properties": {}
19 },
20 "uiSchema": {},
21 "validationSchema": {},
22 "bindingSchema": {},
23 "version": "2022.1",
24 "tags": [],
25 "id": "62bf2e8333385420ffe7bdd7"
26 }
27]
Returns all JSON form documents that have previously been created.
Was this page helpful?
Previous

Update a form

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Response

An array of form documents.
createdstringformat: "date-time"
createdBystring
lastUpdatedstringformat: "date-time"
lastUpdatedBystring
namestring
descriptionstring or null
structobject
schemaobject
uiSchemaobject
validationSchemaobject
bindingSchemaobject
versionstring
_idstring
tagslist of strings or maps from strings to any
idstring
namespaceobject or null

Errors

500
Internal Server Error