Properties
| Name | Type | Description |
|---|---|---|
| uris | object | |
| tags | object | |
| metatags | string | |
| _expandable | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SuperBatchWebResources",
"title": "SuperBatchWebResources",
"type": "object",
"properties": {
"uris": {
"type": "object",
"properties": {
"all": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"css": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"js": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
}
},
"example": "example_value"
},
"tags": {
"type": "object",
"properties": {
"all": {
"type": "string"
},
"css": {
"type": "string"
},
"data": {
"type": "string"
},
"js": {
"type": "string"
}
},
"example": "example_value"
},
"metatags": {
"type": "string",
"example": "example_value"
},
"_expandable": {
"type": "object",
"additionalProperties": true,
"example": "example_value"
}
}
}