Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rjs_json_form
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
rjs_json_form
Commits
9c576970
Commit
9c576970
authored
May 17, 2018
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add circular_property_*_schema.json
parent
b920a106
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
81 additions
and
0 deletions
+81
-0
demo/docs.json
demo/docs.json
+3
-0
demo/docs/circular_property_A_schema.json
demo/docs/circular_property_A_schema.json
+27
-0
demo/docs/circular_property_B_schema.json
demo/docs/circular_property_B_schema.json
+24
-0
demo/docs/circular_property_C_schema.json
demo/docs/circular_property_C_schema.json
+27
-0
No files found.
demo/docs.json
View file @
9c576970
...
...
@@ -6,6 +6,9 @@
"docs/circular_A_schema.json"
,
"docs/circular_B_schema.json"
,
"docs/circular_C_schema.json"
,
"docs/circular_property_A_schema.json"
,
"docs/circular_property_B_schema.json"
,
"docs/circular_property_C_schema.json"
,
"docs/demo.json"
,
"docs/xmla_settings_schema.json"
]
demo/docs/circular_property_A_schema.json
0 → 100644
View file @
9c576970
{
"$schema"
:
"http://json-schema.org/draft-07/schema"
,
"title"
:
"Settings for XMLA connection"
,
"type"
:
"object"
,
"properties"
:
{
"url"
:
{
"uniqueItems"
:
true
,
"items"
:
{
"format"
:
"uri"
,
"minLength"
:
1
,
"type"
:
"string"
},
"minItems"
:
1
,
"type"
:
"array"
},
"username"
:
{
"$ref"
:
"circular_property_B_schema.json"
},
"password"
:
{
"type"
:
"string"
}
},
"required"
:
[
"username"
],
"additionalProperties"
:
false
}
\ No newline at end of file
demo/docs/circular_property_B_schema.json
0 → 100644
View file @
9c576970
{
"$schema"
:
"http://json-schema.org/draft-07/schema"
,
"title"
:
"Settings for XMLA connection"
,
"type"
:
"object"
,
"properties"
:
{
"url"
:
{
"uniqueItems"
:
true
,
"items"
:
{
"format"
:
"uri"
,
"minLength"
:
1
,
"type"
:
"string"
},
"minItems"
:
0
,
"type"
:
"array"
},
"username"
:
{
"$ref"
:
"circular_property_C_schema.json"
},
"password"
:
{
"type"
:
"string"
}
},
"additionalProperties"
:
false
}
\ No newline at end of file
demo/docs/circular_property_C_schema.json
0 → 100644
View file @
9c576970
{
"$schema"
:
"http://json-schema.org/draft-07/schema"
,
"title"
:
"Settings for XMLA connection"
,
"type"
:
"object"
,
"properties"
:
{
"url"
:
{
"uniqueItems"
:
true
,
"items"
:
{
"format"
:
"uri"
,
"minLength"
:
1
,
"type"
:
"string"
},
"minItems"
:
1
,
"type"
:
"array"
},
"username"
:
{
"$ref"
:
"circular_property_A_schema.json"
},
"password"
:
{
"type"
:
"string"
}
},
"required"
:
[
"username"
],
"additionalProperties"
:
false
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment