Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Nov 4, 2024
1 parent ae21d97 commit ca18629
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 24 deletions.
60 changes: 40 additions & 20 deletions spec/backend.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@
}
},
"Action_Config": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Action_Create": {
"$extends": "Action"
Expand Down Expand Up @@ -82,8 +84,10 @@
}
},
"Action_Execute_Request_Body": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Action_Execute_Request": {
"type": "object",
Expand Down Expand Up @@ -112,8 +116,10 @@
}
},
"Action_Execute_Response_Body": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Action_Execute_Response": {
"type": "object",
Expand Down Expand Up @@ -221,8 +227,10 @@
},
"Audit_Object": {
"description": "A key value object containing the changes",
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Audit_Collection": {
"$ref": "common:Collection",
Expand Down Expand Up @@ -340,8 +348,10 @@
}
},
"Connection_Config": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Connection_Collection": {
"$ref": "common:Collection",
Expand Down Expand Up @@ -724,8 +734,10 @@
}
},
"Identity_Config": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Identity_Collection": {
"$ref": "common:Collection",
Expand Down Expand Up @@ -804,8 +816,10 @@
}
},
"Generator_Provider_Config": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Generator_Provider_Changelog": {
"type": "object",
Expand Down Expand Up @@ -1204,13 +1218,17 @@
},
"Schema_Source": {
"description": "Contains the TypeSchema specification",
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Schema_Form": {
"description": "Contains a UI vocabulary to describe the UI of the schema",
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Schema_Collection": {
"$ref": "common:Collection",
Expand Down Expand Up @@ -1321,8 +1339,10 @@
}
},
"Statistic_Chart_Data": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Statistic_Chart": {
"type": "object",
Expand Down
12 changes: 8 additions & 4 deletions spec/system.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,16 @@
}
},
"Schema_TypeSchema": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
},
"Schema_Form": {
"type": "object",
"additionalProperties": true
"type": "map",
"schema": {
"type": "any"
}
}
}
}

0 comments on commit ca18629

Please sign in to comment.