summaryrefslogtreecommitdiffstats
path: root/src/orchestrator/api/json-schemas
diff options
context:
space:
mode:
Diffstat (limited to 'src/orchestrator/api/json-schemas')
-rw-r--r--src/orchestrator/api/json-schemas/cluster-kv.json54
-rw-r--r--src/orchestrator/api/json-schemas/cluster-label.json13
-rw-r--r--src/orchestrator/api/json-schemas/composite-app.json45
-rw-r--r--src/orchestrator/api/json-schemas/composite-profile.json46
-rw-r--r--src/orchestrator/api/json-schemas/controller.json73
-rw-r--r--src/orchestrator/api/json-schemas/deployment-group-intent.json79
-rw-r--r--src/orchestrator/api/json-schemas/deployment-intent.json55
-rw-r--r--src/orchestrator/api/json-schemas/generic-placement-intent-app.json117
-rw-r--r--src/orchestrator/api/json-schemas/generic-placement-intent.json51
-rw-r--r--src/orchestrator/api/json-schemas/metadata.json37
-rw-r--r--src/orchestrator/api/json-schemas/network-load-interface.json77
-rw-r--r--src/orchestrator/api/json-schemas/network-workload.json67
-rw-r--r--src/orchestrator/api/json-schemas/provider-network.json122
-rw-r--r--src/orchestrator/api/json-schemas/virtual-network.json75
14 files changed, 0 insertions, 911 deletions
diff --git a/src/orchestrator/api/json-schemas/cluster-kv.json b/src/orchestrator/api/json-schemas/cluster-kv.json
deleted file mode 100644
index c7013bab..00000000
--- a/src/orchestrator/api/json-schemas/cluster-kv.json
+++ /dev/null
@@ -1,54 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "required": [
- "kv"
- ],
- "type": "object",
- "properties": {
- "kv": {
- "items": {
- "additionalProperties": {
- "type": "string",
- "maxLength": 128
- },
- "type": "object"
- },
- "type": "array"
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/cluster-label.json b/src/orchestrator/api/json-schemas/cluster-label.json
deleted file mode 100644
index 22267b3d..00000000
--- a/src/orchestrator/api/json-schemas/cluster-label.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "label-name": {
- "description": "Logical Cloud to use for this intent",
- "type": "string",
- "example": "cluster-label-1",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/composite-app.json b/src/orchestrator/api/json-schemas/composite-app.json
deleted file mode 100644
index 3f976831..00000000
--- a/src/orchestrator/api/json-schemas/composite-app.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "version": {
- "description": "Composite Application Version",
- "type": "string",
- "example": "v1",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/composite-profile.json b/src/orchestrator/api/json-schemas/composite-profile.json
deleted file mode 100644
index e404a64c..00000000
--- a/src/orchestrator/api/json-schemas/composite-profile.json
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "app-name": {
- "description": "Application Name",
- "required": [
- "app-name"
- ],
- "type": "string",
- "example": "Application1",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/controller.json b/src/orchestrator/api/json-schemas/controller.json
deleted file mode 100644
index 3263ff21..00000000
--- a/src/orchestrator/api/json-schemas/controller.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "required": [
- "host",
- "port",
- "type",
- "priority"
- ],
- "type": "object",
- "properties": {
- "priority": {
- "description": "Priority of controller to be called",
- "type": "integer",
- "example": 4,
- "minimum": 0,
- "maximum": 100
- },
- "host": {
- "description": "Controller reachibility information",
- "type": "string",
- "example": "10.7.100.4",
- "maxLength": 128
- },
- "type": {
- "description": "Type of controller (placement, action are 2 types supported)",
- "type": "string",
- "example": "placement",
- "maxLength": 48
- },
- "port": {
- "description": "Port for controller",
- "type": "integer",
- "minimum": 0,
- "maximum": 50000,
- "example": 9029
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/deployment-group-intent.json b/src/orchestrator/api/json-schemas/deployment-group-intent.json
deleted file mode 100644
index 2740747b..00000000
--- a/src/orchestrator/api/json-schemas/deployment-group-intent.json
+++ /dev/null
@@ -1,79 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "required": [
- "profile",
- "version"
- ],
- "type": "object",
- "description": "DepSpecData has profile, version, OverrideValuesObj",
- "properties": {
- "override-values": {
- "items": {
- "required": [
- "app-name",
- "values"
- ],
- "type": "object",
- "description": "OverrideValues has appName and ValuesObj",
- "properties": {
- "app-name": {
- "type": "string"
- },
- "values": {
- "additionalProperties": {
- "type": "string",
- "maxLength": 128
- },
- "type": "object"
- }
- }
- },
- "type": "array"
- },
- "profile": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "version": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/deployment-intent.json b/src/orchestrator/api/json-schemas/deployment-intent.json
deleted file mode 100644
index 6bdc0b43..00000000
--- a/src/orchestrator/api/json-schemas/deployment-intent.json
+++ /dev/null
@@ -1,55 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "required": [
- "intent"
- ],
- "type": "object",
- "description": "IntentSpecData has Intent",
- "properties": {
- "intent": {
- "additionalProperties": {
- "type": "string",
- "maxLength": 128
- },
- "type": "object",
- "example": {
- "generic-placement-intent": "gpi-name"
- }
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
-} \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/generic-placement-intent-app.json b/src/orchestrator/api/json-schemas/generic-placement-intent-app.json
deleted file mode 100644
index 0b6447c2..00000000
--- a/src/orchestrator/api/json-schemas/generic-placement-intent-app.json
+++ /dev/null
@@ -1,117 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "properties": {
- "app-name": {
- "type": "string",
- "example": "appl",
- "maxLength": 128
- },
- "anyOf": {
- "items": {
- "type": "object",
- "description": "AnyOf consists of Array of ProviderName & ClusterLabelNames",
- "properties": {
- "cluster-label-name": {
- "type": "string",
- "example": "east",
- "maxLength": 128
- },
- "provider-name": {
- "type": "string",
- "example": "provider1",
- "maxLength": 128
- },
- "cluster-name": {
- "type": "string",
- "example": "cluster1",
- "maxLength": 128
- }
- }
- },
- "type": "array"
- },
- "allOf": {
- "items": {
- "type": "object",
- "description": "AllOf ProviderName, ClusterName, ClusterLabelName and AnyOfArray",
- "properties": {
- "provider-name": {
- "type": "string",
- "example": "provider2",
- "maxLength": 128
- },
- "cluster-label-name": {
- "type": "string",
- "example": "west",
- "maxLength": 128
- },
- "anyOf": {
- "items": {
- "type": "object",
- "description": "AnyOf consists of Array of ProviderName & ClusterLabelNames",
- "properties": {
- "cluster-label-name": {
- "type": "string",
- "example": "east",
- "maxLength": 128
- },
- "provider-name": {
- "type": "string",
- "example": "provider1",
- "maxLength": 128
- },
- "cluster-name": {
- "type": "string",
- "example": "cluster1",
- "maxLength": 128
- }
- }
- },
- "type": "array"
- },
- "cluster-name": {
- "type": "string",
- "example": "cluster2",
- "maxLength": 128
- }
- }
- },
- "type": "array"
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
-} \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/generic-placement-intent.json b/src/orchestrator/api/json-schemas/generic-placement-intent.json
deleted file mode 100644
index 44df9087..00000000
--- a/src/orchestrator/api/json-schemas/generic-placement-intent.json
+++ /dev/null
@@ -1,51 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "type": "object",
- "description": "Spec",
- "properties": {
- "logical-cloud": {
- "description": "Logical Cloud to use for this intent",
- "required": [
- "logical-cloud"
- ],
- "type": "string",
- "example": "cloud1",
- "maxLength": 128
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/metadata.json b/src/orchestrator/api/json-schemas/metadata.json
deleted file mode 100644
index 960545ee..00000000
--- a/src/orchestrator/api/json-schemas/metadata.json
+++ /dev/null
@@ -1,37 +0,0 @@
-
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/network-load-interface.json b/src/orchestrator/api/json-schemas/network-load-interface.json
deleted file mode 100644
index dd5b40d1..00000000
--- a/src/orchestrator/api/json-schemas/network-load-interface.json
+++ /dev/null
@@ -1,77 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "required": [
- "interface",
- "name"
- ],
- "type": "object",
- "properties": {
- "interface": {
- "description": "interface Name",
- "type": "string",
- "example": "eth0",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "macAddress": {
- "description": "Name of the network",
- "type": "string",
- "example": "x.x.x.x",
- "maxLength": 128
- },
- "ipAddress": {
- "description": "Name of the network",
- "type": "string",
- "example": "0.0.0.0",
- "maxLength": 128
- },
- "name": {
- "description": "Name of the network",
- "type": "string",
- "example": "provider-1",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "defaultGateway": {
- "description": "Is this interface default gateway",
- "type": "boolean",
- "example": false,
- "maxLength": 128
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- } \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/network-workload.json b/src/orchestrator/api/json-schemas/network-workload.json
deleted file mode 100644
index c5dc14cb..00000000
--- a/src/orchestrator/api/json-schemas/network-workload.json
+++ /dev/null
@@ -1,67 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "type": "object",
- "description": "Newtwork Workload Intent",
- "properties": {
- "spec": {
- "type": "object",
- "properties": {
- "workload-resource": {
- "description": "Name of the workload",
- "type": "string",
- "example": "firewall",
- "maxLength": 254,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "type": {
- "description": "Type of the workload",
- "type": "string",
- "example": "deployment",
- "maxLength": 128
- },
- "application-name": {
- "description": "Application Name",
- "type": "string",
- "example": "Application1",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
- }
- }
-} \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/provider-network.json b/src/orchestrator/api/json-schemas/provider-network.json
deleted file mode 100644
index 0aef0304..00000000
--- a/src/orchestrator/api/json-schemas/provider-network.json
+++ /dev/null
@@ -1,122 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "required": [
- "cniType",
- "ipv4Subnets",
- "providerNetType",
- "vlan"
- ],
- "type": "object",
- "properties": {
- "ipv4Subnets": {
- "items": {
- "required": [
- "name",
- "subnet"
- ],
- "type": "object",
- "properties": {
- "subnet": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "excludeIps": {
- "type": "string",
- "maxLength": 128
- },
- "gateway": {
- "type": "string",
- "maxLength": 128
- },
- "name": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- }
- },
- "type": "array"
- },
- "cniType": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "vlan": {
- "required": [
- "logicalInterfaceName",
- "nodeLabelList",
- "providerInterfaceName",
- "vlanID",
- "vlanNodeSelector"
- ],
- "type": "object",
- "properties": {
- "vlanNodeSelector": {
- "type": "string",
- "maxLength": 128
- },
- "nodeLabelList": {
- "items": {
- "type": "string",
- "maxLength": 128
- },
- "type": "array"
- },
- "providerInterfaceName": {
- "type": "string",
- "maxLength": 128
- },
- "vlanID": {
- "type": "string",
- "maxLength": 128
- },
- "logicalInterfaceName": {
- "type": "string",
- "maxLength": 128
- }
- }
- },
- "providerNetType": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
-} \ No newline at end of file
diff --git a/src/orchestrator/api/json-schemas/virtual-network.json b/src/orchestrator/api/json-schemas/virtual-network.json
deleted file mode 100644
index f2bc9d3d..00000000
--- a/src/orchestrator/api/json-schemas/virtual-network.json
+++ /dev/null
@@ -1,75 +0,0 @@
-{
- "$schema": "http://json-schema.org/schema#",
- "type": "object",
- "properties": {
- "spec": {
- "properties": {
- "ipv4Subnets": {
- "items": {
- "required": [
- "name",
- "subnet"
- ],
- "type": "object",
- "properties": {
- "subnet": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "excludeIps": {
- "type": "string",
- "maxLength": 1024
- },
- "gateway": {
- "type": "string",
- "maxLength": 128
- },
- "name": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- }
- },
- "type": "array"
- },
- "cniType": {
- "type": "string",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- }
- }
- },
- "metadata": {
- "required": ["name"],
- "properties": {
- "userData2": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some more data",
- "maxLength": 512
- },
- "userData1": {
- "description": "User relevant data for the resource",
- "type": "string",
- "example": "Some data",
- "maxLength": 512
- },
- "name": {
- "description": "Name of the resource",
- "type": "string",
- "example": "ResName",
- "maxLength": 128,
- "pattern": "[-_0-9a-zA-Z]+$"
- },
- "description": {
- "description": "Description for the resource",
- "type": "string",
- "example": "Resource description",
- "maxLength": 1024
- }
- }
- }
- }
-} \ No newline at end of file