Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
268 changes: 80 additions & 188 deletions .ci/listing_config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,19 @@
"maxLength": 3
},
"listing_contacts" : {
"type": "list"
"type": "array"
},
"listing_uris" : {
"type": "list"
"type": "array"
},
"listing_logos" : {
"type": "list"
"type": "array"
},
"listing_screenshots": {
"type": "list"
"type": "array"
},
"listing_videos" : {
"type": "list"
"type": "array"
}
},
"required" : [
Expand Down Expand Up @@ -120,207 +120,99 @@
"items" : {
"type" : "object",
"properties": {
"type" : "array",
"items": {
"plan_listing" : {
"type" : "object",
"properties": {
"plan_listing" : {
"type" : "object",
"properties": {
"title" : {
"type": "string"
},
"summary" : {
"type": "string"
},
"description": {
"type": "string"
}
}
"title" : {
"type": "string"
},
"pricing_and_availability": {
"type" : "object",
"properties": {
"visibility" : {
"type": "string",
"enum": [
"private",
"public"
]
},
"azure_private_subscriptions": {
"type" : "array",
"items": {
"type" : "object",
"properties": {
"ID" : {
"type": "string"
},
"Description": {
"type": "string"
}
},
"required" : [
"ID"
]
}
}
}
"summary" : {
"type": "string"
},
"technical_configuration" : {
"type" : "object",
"properties": {
"version" : {
"type": "string"
},
"allowedCustomerActions": {
"type" : "array",
"items" : {
"description": {
"type": "string"
}
}
},
"pricing_and_availability": {
"type" : "object",
"properties": {
"visibility" : {
"type": "string",
"enum": [
"private",
"public"
]
},
"azure_private_subscriptions": {
"type" : "array",
"items": {
"type" : "object",
"properties": {
"ID" : {
"type": "string"
},
"maxLength": 1
},
"allowedDataActions" : {
"type" : "array",
"items" : {
"Description": {
"type": "string"
},
"maxLength": 1
},
"tenant_id" : {
"type": "string"
},
"authorizations" : {
"type" : "array",
"items" : {
"type" : "object",
"properties": {
"id" : {
"type": "string"
},
"role": {
"type": "string",
"enum": [
"Owner",
"Contributor"
]
}
}
},
"minLength": 1,
"maxLength": 10
}
},
"policy_settings" : {
"type": "array"
}
},
"required" : [
"version"
]
}
}
}
}
},
"properties" : {
"type" : "array",
"items": {
"type" : "object",
"properties": {
"plan_listing" : {
"type" : "object",
"properties": {
"title" : {
"type": "string"
},
"summary" : {
"type": "string"
},
"description": {
"type": "string"
}
}
},
"pricing_and_availability": {
"type" : "object",
"properties": {
"visibility" : {
"type": "string",
"enum": [
"private",
"public"
"required" : [
"ID"
]
},
"azure_private_subscriptions": {
"type" : "array",
"items": {
"type" : "object",
"properties": {
"ID" : {
"type": "string"
},
"Description": {
"type": "string"
}
},
"required" : [
"ID"
]
}
}
}
},
"technical_configuration" : {
"type" : "object",
"properties": {
"version" : {
}
},
"technical_configuration" : {
"type" : "object",
"properties": {
"version" : {
"type": "string"
},
"allowedCustomerActions": {
"type" : "array",
"items" : {
"type": "string"
},
"allowedCustomerActions": {
"type" : "array",
"items" : {
"type": "string"
},
"maxLength": 1
},
"allowedDataActions" : {
"type" : "array",
"items" : {
"type": "string"
},
"maxLength": 1
},
"tenant_id" : {
"maxLength": 1
},
"allowedDataActions" : {
"type" : "array",
"items" : {
"type": "string"
},
"authorizations" : {
"type" : "array",
"items" : {
"type" : "object",
"properties": {
"id" : {
"type": "string"
},
"role": {
"type": "string",
"enum": [
"Owner",
"Contributor"
]
}
"maxLength": 1
},
"tenant_id" : {
"type": "string"
},
"authorizations" : {
"type" : "array",
"items" : {
"type" : "object",
"properties": {
"id" : {
"type": "string"
},
"role": {
"type": "string",
"enum": [
"Owner",
"Contributor"
]
}
},
"minLength": 1,
"maxLength": 10
}
},
"policy_settings" : {
"type": "array"
}
"minLength": 1,
"maxLength": 10
},
"required" : [
"version"
]
}
"policy_settings" : {
"type": "array"
}
},
"required" : [
"version"
]
}
}
}
Expand Down