Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,9 @@
"NamespacePropertiesEntry": {
"description": "Represents an entry in the feed when querying namespace info",
"type": "object",
"required": [
"title"
],
"properties": {
"id": {
"description": "The URL of the GET request",
Expand All @@ -516,7 +519,7 @@
},
"title": {
"description": "The name of the namespace.",
"type": "object",
"type": "string",
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
}
Expand All @@ -538,6 +541,10 @@
"content": {
"description": "Information about the namespace.",
"type": "object",
"required": [
"type",
"NamespaceProperties"
],
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
},
Expand Down Expand Up @@ -828,7 +835,7 @@
},
"title": {
"description": "The name of the queue",
"type": "object",
"type": "string",
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
}
Expand Down Expand Up @@ -858,6 +865,10 @@
"content": {
"description": "The QueueDescription",
"type": "object",
"required": [
"type",
"QueueDescription"
],
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
},
Expand Down Expand Up @@ -1203,7 +1214,7 @@
},
"title": {
"description": "The name of the topic",
"type": "object",
"type": "string",
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
}
Expand Down Expand Up @@ -1233,6 +1244,10 @@
"content": {
"description": "The TopicDescription",
"type": "object",
"required": [
"type",
"TopicDescription"
],
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
},
Expand Down Expand Up @@ -1351,6 +1366,14 @@
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
}
},
"defaultRuleDescription": {
"description": "The default rule description.",
"$ref": "#/definitions/RuleDescription",
"xml": {
"name": "DefaultRuleDescription",
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
}
},
"messageCount": {
"description": "The number of messages in the subscription.",
"type": "integer",
Expand Down Expand Up @@ -1461,7 +1484,7 @@
},
"title": {
"description": "The name of the subscription",
"type": "object",
"type": "string",
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
}
Expand All @@ -1488,6 +1511,10 @@
"content": {
"description": "The SubscriptionDescription.",
"type": "object",
"required": [
"type",
"SubscriptionDescription"
],
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
},
Expand Down Expand Up @@ -1864,7 +1891,7 @@
},
"title": {
"description": "The name of the rule",
"type": "object",
"type": "string",
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
}
Expand All @@ -1891,6 +1918,10 @@
"content": {
"description": "The RuleDescription",
"type": "object",
"required": [
"type",
"RuleDescription"
],
"xml": {
"namespace": "http://www.w3.org/2005/Atom"
},
Expand Down