Commit 19c377ab authored by Julien Muchembled's avatar Julien Muchembled

erp5: schemas for output parameters of sub-partitions are useless

parent a71f06d6
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Values returned by Cloudooo instanciation",
"properties": {
"url": {
"description": "Conversion service access information",
"type": "string"
}
},
"type": "object"
}
......@@ -147,7 +147,7 @@
"kumofs": {
"description": "Persistent memcached service",
"additionalProperties": {
"$ref": "./instance-kumofs-input-schema.json#properties"
"$ref": "./instance-kumofs-schema.json#properties"
},
"type": "object"
},
......@@ -158,7 +158,7 @@
"memcached": {
"description": "Volatile memcached service",
"additionalProperties": {
"$ref": "./instance-kumofs-input-schema.json#properties"
"$ref": "./instance-kumofs-schema.json#properties"
},
"type": "object"
},
......@@ -169,7 +169,7 @@
"cloudooo": {
"description": "Format conversion service",
"additionalProperties": {
"$ref": "./instance-cloudooo-input-schema.json#properties"
"$ref": "./instance-cloudooo-schema.json#properties"
},
"type": "object"
},
......@@ -180,7 +180,7 @@
"mariadb": {
"description": "Relational database service",
"additionalProperties": {
"$ref": "./instance-mariadb-input-schema.json#properties"
"$ref": "./instance-mariadb-schema.json#properties"
},
"type": "object"
},
......@@ -196,7 +196,7 @@
"zodb": {
"description": "Zope Object DataBase service",
"oneOf": [
{"$ref": "./instance-zeo-input-schema.json#properties"}
{"$ref": "./instance-zeo-schema.json#properties"}
]
},
"zodb-extern": {
......
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Values returned by KumoFS instanciation",
"properties": {
"url": {
"description": "Persistent memcached access information",
"type": "string"
}
},
"type": "object"
}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Values returned by MariaDB instanciation",
"properties": {
"url": {
"description": "Relational database access information",
"type": "string"
}
},
"type": "object"
}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Values returned by ZEO instanciation",
"properties": {
"zodb-storage-type": {
"description": "zope.cfg-friendly storage type",
"enum": ["zeoclient"],
"type": "string"
},
"zodb-dict": {
"description": "Maps an export identifier to values received as parameters",
"patternProperties": {
".*": {
"description": "Contains the mount-point, cache-size and client-dict received as parameters for current export identifier (client-dict's 'storage' and 'server' entries are overwritten with actual values)",
"type": "array"
}
},
"type": "object"
},
"tidstorage-ip": {
"description": "IP address of tidstorage service",
"type": "string"
},
"tidstorage-port": {
"description": "Port of tidstorage service",
"type": "string" // XXX: better to be an integer ?
}
},
"type": "object"
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment