diff options
12 files changed, 7051 insertions, 6917 deletions
diff --git a/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/index.html b/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/index.html index c59e6223..38e9caed 100644 --- a/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/index.html +++ b/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/index.html @@ -844,313 +844,313 @@ ul.nav-tabs { <script> // Script section to load models into a JS Var var defs = {} - defs["authorization_result"] = {
- "required" : [ "result" ],
- "type" : "object",
- "properties" : {
- "result" : {
- "type" : "boolean",
- "description" : "If true, the access is granted"
- }
- },
- "description" : "Result of authorization",
- "example" : {
- "result" : true
- }
+ defs["authorization_result"] = { + "required" : [ "result" ], + "type" : "object", + "properties" : { + "result" : { + "type" : "boolean", + "description" : "If true, the access is granted" + } + }, + "description" : "Result of authorization", + "example" : { + "result" : true + } }; - defs["error_information"] = {
- "type" : "object",
- "properties" : {
- "detail" : {
- "type" : "string",
- "description" : " A human-readable explanation specific to this occurrence of the problem.",
- "example" : "Policy type not found"
- },
- "title" : {
- "type" : "string",
- "description" : "A specific error name",
- "example" : "Not Found"
- },
- "status" : {
- "type" : "integer",
- "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ",
- "format" : "int32",
- "example" : 404
- }
- },
- "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807"
+ defs["error_information"] = { + "type" : "object", + "properties" : { + "detail" : { + "type" : "string", + "description" : " A human-readable explanation specific to this occurrence of the problem.", + "example" : "Policy type not found" + }, + "title" : { + "type" : "string", + "description" : "A specific error name", + "example" : "Not Found" + }, + "status" : { + "type" : "integer", + "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ", + "format" : "int32", + "example" : 404 + } + }, + "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807" }; - defs["input"] = {
- "required" : [ "access_type", "auth_token", "policy_type_id" ],
- "type" : "object",
- "properties" : {
- "access_type" : {
- "type" : "string",
- "description" : "Access type",
- "enum" : [ "READ", "WRITE", "DELETE" ]
- },
- "auth_token" : {
- "type" : "string",
- "description" : "Authorization token"
- },
- "policy_type_id" : {
- "type" : "string",
- "description" : "Policy type identifier"
- }
- },
- "description" : "input"
+ defs["input"] = { + "required" : [ "access_type", "auth_token", "policy_type_id" ], + "type" : "object", + "properties" : { + "access_type" : { + "type" : "string", + "description" : "Access type", + "enum" : [ "READ", "WRITE", "DELETE" ] + }, + "auth_token" : { + "type" : "string", + "description" : "Authorization token" + }, + "policy_type_id" : { + "type" : "string", + "description" : "Policy type identifier" + } + }, + "description" : "input" }; - defs["Link"] = {
- "type" : "object",
- "properties" : {
- "templated" : {
- "type" : "boolean"
- },
- "href" : {
- "type" : "string"
- }
- }
+ defs["Link"] = { + "type" : "object", + "properties" : { + "templated" : { + "type" : "boolean" + }, + "href" : { + "type" : "string" + } + } }; - defs["policy_authorization"] = {
- "required" : [ "input" ],
- "type" : "object",
- "properties" : {
- "input" : {
- "$ref" : "#/components/schemas/input"
- }
- },
- "description" : "Authorization request for A1 policy requests"
+ defs["policy_authorization"] = { + "required" : [ "input" ], + "type" : "object", + "properties" : { + "input" : { + "$ref" : "#/components/schemas/input" + } + }, + "description" : "Authorization request for A1 policy requests" }; - defs["policy_id_list"] = {
- "type" : "object",
- "properties" : {
- "policy_ids" : {
- "type" : "array",
- "description" : "Policy identities",
- "items" : {
- "type" : "string",
- "description" : "Policy identities"
- }
- }
- },
- "description" : "A list of policy identities",
- "example" : {
- "policy_ids" : [ "policy_ids", "policy_ids" ]
- }
+ defs["policy_id_list"] = { + "type" : "object", + "properties" : { + "policy_ids" : { + "type" : "array", + "description" : "Policy identities", + "items" : { + "type" : "string", + "description" : "Policy identities" + } + } + }, + "description" : "A list of policy identities", + "example" : { + "policy_ids" : [ "policy_ids", "policy_ids" ] + } }; - defs["policy_info"] = {
- "required" : [ "policy_data", "policy_id", "policytype_id", "ric_id" ],
- "type" : "object",
- "properties" : {
- "ric_id" : {
- "type" : "string",
- "description" : "identity of the target Near-RT RIC"
- },
- "policy_id" : {
- "type" : "string",
- "description" : "identity of the policy"
- },
- "transient" : {
- "type" : "boolean",
- "description" : "if true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.",
- "nullable" : false,
- "example" : false,
- "default" : false
- },
- "service_id" : {
- "type" : "string",
- "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.",
- "default" : ""
- },
- "policy_data" : {
- "type" : "object",
- "description" : "the configuration of the policy"
- },
- "status_notification_uri" : {
- "type" : "string",
- "description" : "Callback URI for policy status updates"
- },
- "policytype_id" : {
- "type" : "string",
- "description" : "identity of the policy type"
- }
- },
- "description" : "Information for one A1-P Policy"
+ defs["policy_info"] = { + "required" : [ "policy_data", "policy_id", "policytype_id", "ric_id" ], + "type" : "object", + "properties" : { + "ric_id" : { + "type" : "string", + "description" : "identity of the target Near-RT RIC" + }, + "policy_id" : { + "type" : "string", + "description" : "identity of the policy" + }, + "transient" : { + "type" : "boolean", + "description" : "if true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.", + "nullable" : false, + "example" : false, + "default" : false + }, + "service_id" : { + "type" : "string", + "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", + "default" : "" + }, + "policy_data" : { + "type" : "object", + "description" : "the configuration of the policy" + }, + "status_notification_uri" : { + "type" : "string", + "description" : "Callback URI for policy status updates" + }, + "policytype_id" : { + "type" : "string", + "description" : "identity of the policy type" + } + }, + "description" : "Information for one A1-P Policy" }; - defs["policy_info_list"] = {
- "type" : "object",
- "properties" : {
- "policies" : {
- "type" : "array",
- "description" : "List of policy information",
- "items" : {
- "$ref" : "#/components/schemas/policy_info"
- }
- }
- },
- "description" : "List of policy information"
+ defs["policy_info_list"] = { + "type" : "object", + "properties" : { + "policies" : { + "type" : "array", + "description" : "List of policy information", + "items" : { + "$ref" : "#/components/schemas/policy_info" + } + } + }, + "description" : "List of policy information" }; - defs["policy_status_info"] = {
- "type" : "object",
- "properties" : {
- "last_modified" : {
- "type" : "string",
- "description" : "timestamp, last modification time"
- },
- "status" : {
- "type" : "object",
- "description" : "the Policy status"
- }
- },
- "description" : "Status for one A1-P Policy"
+ defs["policy_status_info"] = { + "type" : "object", + "properties" : { + "last_modified" : { + "type" : "string", + "description" : "timestamp, last modification time" + }, + "status" : { + "type" : "object", + "description" : "the Policy status" + } + }, + "description" : "Status for one A1-P Policy" }; - defs["policy_type_definition"] = {
- "type" : "object",
- "properties" : {
- "policy_schema" : {
- "type" : "object",
- "description" : "Policy type json schema. The schema is a json object following http://json-schema.org/draft-07/schema"
- }
- },
- "description" : "Contains policy type schema definition"
+ defs["policy_type_definition"] = { + "type" : "object", + "properties" : { + "policy_schema" : { + "type" : "object", + "description" : "Policy type json schema. The schema is a json object following http://json-schema.org/draft-07/schema" + } + }, + "description" : "Contains policy type schema definition" }; - defs["policy_type_id_list"] = {
- "type" : "object",
- "properties" : {
- "policytype_ids" : {
- "type" : "array",
- "description" : "Policy type identities",
- "items" : {
- "type" : "string",
- "description" : "Policy type identities"
- }
- }
- },
- "description" : "Information about policy types"
+ defs["policy_type_id_list"] = { + "type" : "object", + "properties" : { + "policytype_ids" : { + "type" : "array", + "description" : "Policy type identities", + "items" : { + "type" : "string", + "description" : "Policy type identities" + } + } + }, + "description" : "Information about policy types" }; - defs["ric_info"] = {
- "type" : "object",
- "properties" : {
- "ric_id" : {
- "type" : "string",
- "description" : "identity of the Near-RT RIC"
- },
- "managed_element_ids" : {
- "type" : "array",
- "description" : "O1 identities for managed entities",
- "items" : {
- "type" : "string",
- "description" : "O1 identities for managed entities"
- }
- },
- "state" : {
- "type" : "string",
- "description" : "Represents the states for a Near-RT RIC",
- "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ]
- },
- "policytype_ids" : {
- "type" : "array",
- "description" : "supported policy types",
- "items" : {
- "type" : "string",
- "description" : "supported policy types"
- }
- }
- },
- "description" : "Information for a Near-RT RIC"
+ defs["ric_info"] = { + "type" : "object", + "properties" : { + "ric_id" : { + "type" : "string", + "description" : "identity of the Near-RT RIC" + }, + "managed_element_ids" : { + "type" : "array", + "description" : "O1 identities for managed entities", + "items" : { + "type" : "string", + "description" : "O1 identities for managed entities" + } + }, + "state" : { + "type" : "string", + "description" : "Represents the states for a Near-RT RIC", + "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ] + }, + "policytype_ids" : { + "type" : "array", + "description" : "supported policy types", + "items" : { + "type" : "string", + "description" : "supported policy types" + } + } + }, + "description" : "Information for a Near-RT RIC" }; - defs["ric_info_list"] = {
- "type" : "object",
- "properties" : {
- "rics" : {
- "type" : "array",
- "description" : "List of Near-RT RIC information",
- "items" : {
- "$ref" : "#/components/schemas/ric_info"
- }
- }
- },
- "description" : "List of Near-RT RIC information"
+ defs["ric_info_list"] = { + "type" : "object", + "properties" : { + "rics" : { + "type" : "array", + "description" : "List of Near-RT RIC information", + "items" : { + "$ref" : "#/components/schemas/ric_info" + } + } + }, + "description" : "List of Near-RT RIC information" }; - defs["service_callback_info_v2"] = {
- "required" : [ "event_type", "ric_id" ],
- "type" : "object",
- "properties" : {
- "ric_id" : {
- "type" : "string",
- "description" : "identity of a Near-RT RIC"
- },
- "event_type" : {
- "type" : "string",
- "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management",
- "enum" : [ "AVAILABLE" ]
- }
- },
- "description" : "Information transferred as in Service callbacks (callback_url)"
+ defs["service_callback_info_v2"] = { + "required" : [ "event_type", "ric_id" ], + "type" : "object", + "properties" : { + "ric_id" : { + "type" : "string", + "description" : "identity of a Near-RT RIC" + }, + "event_type" : { + "type" : "string", + "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management", + "enum" : [ "AVAILABLE" ] + } + }, + "description" : "Information transferred as in Service callbacks (callback_url)" }; - defs["service_registration_info"] = {
- "required" : [ "service_id" ],
- "type" : "object",
- "properties" : {
- "callback_url" : {
- "type" : "string",
- "description" : "callback for notifying of Near-RT RIC state changes"
- },
- "service_id" : {
- "type" : "string",
- "description" : "identity of the service"
- },
- "keep_alive_interval_seconds" : {
- "type" : "integer",
- "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.",
- "format" : "int64"
- }
- },
- "description" : "Information for one service"
+ defs["service_registration_info"] = { + "required" : [ "service_id" ], + "type" : "object", + "properties" : { + "callback_url" : { + "type" : "string", + "description" : "callback for notifying of Near-RT RIC state changes" + }, + "service_id" : { + "type" : "string", + "description" : "identity of the service" + }, + "keep_alive_interval_seconds" : { + "type" : "integer", + "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.", + "format" : "int64" + } + }, + "description" : "Information for one service" }; - defs["service_status"] = {
- "type" : "object",
- "properties" : {
- "callback_url" : {
- "type" : "string",
- "description" : "callback for notifying of RIC synchronization"
- },
- "service_id" : {
- "type" : "string",
- "description" : "identity of the service"
- },
- "keep_alive_interval_seconds" : {
- "type" : "integer",
- "description" : "policy keep alive timeout",
- "format" : "int64"
- },
- "time_since_last_activity_seconds" : {
- "type" : "integer",
- "description" : "time since last invocation by the service",
- "format" : "int64"
- }
- }
+ defs["service_status"] = { + "type" : "object", + "properties" : { + "callback_url" : { + "type" : "string", + "description" : "callback for notifying of RIC synchronization" + }, + "service_id" : { + "type" : "string", + "description" : "identity of the service" + }, + "keep_alive_interval_seconds" : { + "type" : "integer", + "description" : "policy keep alive timeout", + "format" : "int64" + }, + "time_since_last_activity_seconds" : { + "type" : "integer", + "description" : "time since last invocation by the service", + "format" : "int64" + } + } }; - defs["service_status_list"] = {
- "type" : "object",
- "properties" : {
- "service_list" : {
- "type" : "array",
- "description" : "List of service information",
- "items" : {
- "$ref" : "#/components/schemas/service_status"
- }
- }
- }
+ defs["service_status_list"] = { + "type" : "object", + "properties" : { + "service_list" : { + "type" : "array", + "description" : "List of service information", + "items" : { + "$ref" : "#/components/schemas/service_status" + } + } + } }; - defs["status_info"] = {
- "type" : "object",
- "properties" : {
- "status" : {
- "type" : "string",
- "description" : "status text"
- }
- }
+ defs["status_info"] = { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "description" : "status text" + } + } }; @@ -1575,15 +1575,15 @@ pub fn main() { <div id="responses-A1PolicyManagement-deletePolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy deleted",
- "content" : {
- "*/*" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy deleted", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1651,20 +1651,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-deletePolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "Requested resource is in a locked state."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "Requested resource is in a locked state." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2019,20 +2019,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_info"
- },
- "examples" : {
- "policy_info" : {
- "$ref" : "#/components/examples/policy_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_info" + }, + "examples" : { + "policy_info" : { + "$ref" : "#/components/examples/policy_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2095,13 +2095,13 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2554,20 +2554,20 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getPolicyIds-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy identities",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_id_list"
- },
- "examples" : {
- "policy_id_list" : {
- "$ref" : "#/components/examples/policy_id_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy identities", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_id_list" + }, + "examples" : { + "policy_id_list" : { + "$ref" : "#/components/examples/policy_id_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2630,13 +2630,13 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getPolicyIds-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3089,20 +3089,20 @@ Select policies of a given type name (type identity has the format <typename_ <div id="responses-A1PolicyManagement-getPolicyInstances-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Returns A1 Policies which matches the criteria",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_info_list"
- },
- "examples" : {
- "policy_info_list" : {
- "$ref" : "#/components/examples/policy_info_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Returns A1 Policies which matches the criteria", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_info_list" + }, + "examples" : { + "policy_info_list" : { + "$ref" : "#/components/examples/policy_info_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3170,15 +3170,15 @@ Select policies of a given type name (type identity has the format <typename_ <div id="responses-A1PolicyManagement-getPolicyInstances-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found - Near-RT RIC, policy type or service not found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found - Near-RT RIC, policy type or service not found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3533,20 +3533,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy status",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_status_info"
- },
- "examples" : {
- "policy_status_info" : {
- "$ref" : "#/components/examples/policy_status_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy status", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_status_info" + }, + "examples" : { + "policy_status_info" : { + "$ref" : "#/components/examples/policy_status_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3609,13 +3609,13 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyStatus-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3970,20 +3970,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - schema of the given policy type",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_type_definition"
- },
- "examples" : {
- "policy_type_definition" : {
- "$ref" : "#/components/examples/policy_type_definition"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - schema of the given policy type", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_type_definition" + }, + "examples" : { + "policy_type_definition" : { + "$ref" : "#/components/examples/policy_type_definition" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4046,13 +4046,13 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4471,20 +4471,20 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy Type IDs Found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_type_id_list"
- },
- "examples" : {
- "policy_type_id_list" : {
- "$ref" : "#/components/examples/policy_type_id_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy Type IDs Found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_type_id_list" + }, + "examples" : { + "policy_type_id_list" : { + "$ref" : "#/components/examples/policy_type_id_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4547,13 +4547,13 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4860,15 +4860,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_info"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_info" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -4931,15 +4931,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy updated",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy updated", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5007,15 +5007,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Created - Policy created",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Created - Policy created", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5083,20 +5083,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "Requested resource is in a locked state."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "Requested resource is in a locked state." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5409,15 +5409,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_authorization"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_authorization" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -5480,15 +5480,15 @@ $(document).ready(function() { <div id="responses-AuthorizationAPI-performAccessControl-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/authorization_result"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/authorization_result" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5556,20 +5556,20 @@ $(document).ready(function() { <div id="responses-AuthorizationAPI-performAccessControl-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 403,
- "title" : "Forbidden",
- "detail" : "Your role does not allow to perform this action. Contact System Administrator to change your access rights."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 403, + "title" : "Forbidden", + "detail" : "Your role does not allow to perform this action. Contact System Administrator to change your access rights." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5889,15 +5889,15 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Configuration",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "string"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Configuration", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5960,13 +5960,13 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6273,15 +6273,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "object"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "type" : "object" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -6344,15 +6344,15 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Configuration updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Configuration updated", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6420,20 +6420,20 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 400,
- "title" : "Bad Request",
- "detail" : "The provided request is not valid."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 400, + "title" : "Bad Request", + "detail" : "The provided request is not valid." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6753,20 +6753,20 @@ pub fn main() { <div id="responses-HealthCheck-getStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK- Service is living Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/status_info"
- },
- "examples" : {
- "status_info" : {
- "$ref" : "#/components/examples/status_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK- Service is living Ok", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/status_info" + }, + "examples" : { + "status_info" : { + "$ref" : "#/components/examples/status_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7083,15 +7083,15 @@ pub fn main() { <div id="responses-HealthCheck-getStatusV1-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service is living",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "string"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service is living", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7485,20 +7485,20 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Near-RT RIC is found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ric_info"
- },
- "examples" : {
- "ric_info" : {
- "$ref" : "#/components/examples/ric_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Near-RT RIC is found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ric_info" + }, + "examples" : { + "ric_info" : { + "$ref" : "#/components/examples/ric_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7561,13 +7561,13 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7927,20 +7927,20 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ric_info_list"
- },
- "examples" : {
- "ric_info_list" : {
- "$ref" : "#/components/examples/ric_info_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ric_info_list" + }, + "examples" : { + "ric_info_list" : { + "$ref" : "#/components/examples/ric_info_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8003,13 +8003,13 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8367,15 +8367,15 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "No Content - Service unregistered",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "No Content - Service unregistered", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8438,13 +8438,13 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8804,20 +8804,20 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/service_status_list"
- },
- "examples" : {
- "service_status_list" : {
- "$ref" : "#/components/examples/service_status_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/service_status_list" + }, + "examples" : { + "service_status_list" : { + "$ref" : "#/components/examples/service_status_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8880,13 +8880,13 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9244,15 +9244,15 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service supervision timer refreshed, OK",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service supervision timer refreshed, OK", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9315,13 +9315,13 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9631,15 +9631,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/service_registration_info"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/service_registration_info" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -9702,15 +9702,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service updated", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9778,15 +9778,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Created - Service created",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Created - Service created", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9854,20 +9854,20 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 400,
- "title" : "Bad Request",
- "detail" : "The provided request is not valid."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 400, + "title" : "Bad Request", + "detail" : "The provided request is not valid." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { diff --git a/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html b/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html index 4ce5ef15..5213a0a3 100644 --- a/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html +++ b/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html @@ -844,382 +844,382 @@ ul.nav-tabs { <script> // Script section to load models into a JS Var var defs = {} - defs["AuthorizationResult"] = {
- "required" : [ "result" ],
- "type" : "object",
- "properties" : {
- "result" : {
- "type" : "boolean",
- "description" : "If true, the access is granted"
- }
- },
- "description" : "Result of authorization",
- "example" : {
- "result" : true
- }
-}; - defs["ErrorInformation"] = {
- "type" : "object",
- "properties" : {
- "detail" : {
- "type" : "string",
- "description" : " A human-readable explanation specific to this occurrence of the problem.",
- "example" : "Policy type not found"
- },
- "title" : {
- "type" : "string",
- "description" : "A specific error name",
- "example" : "Not Found"
- },
- "status" : {
- "type" : "integer",
- "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ",
- "format" : "int32",
- "example" : 404
- }
- },
- "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807"
-}; - defs["input"] = {
- "required" : [ "accessType", "authToken", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "accessType" : {
- "type" : "string",
- "description" : "Access type",
- "enum" : [ "READ", "WRITE", "DELETE" ]
- },
- "authToken" : {
- "type" : "string",
- "description" : "Authorization token"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Policy type identifier"
- }
- },
- "description" : "input"
-}; - defs["Link"] = {
- "type" : "object",
- "properties" : {
- "templated" : {
- "type" : "boolean"
- },
- "href" : {
- "type" : "string"
- }
- }
-}; - defs["PolicyAuthorization"] = {
- "required" : [ "input" ],
- "type" : "object",
- "properties" : {
- "input" : {
- "$ref" : "#/components/schemas/input"
- }
- },
- "description" : "Authorization request for A1 policy requests"
-}; - defs["PolicyInformation"] = {
- "required" : [ "nearRtRicId", "policyId" ],
- "type" : "object",
- "properties" : {
- "policyId" : {
- "type" : "string",
- "description" : "Identity of the policy"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC"
-}; - defs["PolicyObjectInformation"] = {
- "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "nearRtRicId" : {
- "type" : "string",
- "description" : "Identity of the target Near-RT RIC",
- "example" : "Near-RT-Ric-ID"
- },
- "transient" : {
- "type" : "boolean",
- "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.",
- "nullable" : false,
- "default" : false
- },
- "policyId" : {
- "type" : "string",
- "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.",
- "example" : "POLICY-ID"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.",
- "example" : "rApp ID",
- "default" : ""
- },
- "policyObject" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type",
- "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
- }
- },
- "description" : "Information related to the creation of the policy"
-}; - defs["PolicyStatusInfo"] = {
- "type" : "object",
- "properties" : {
- "lastModified" : {
- "type" : "string",
- "description" : "timestamp, last modification time"
- },
- "status" : {
- "type" : "object",
- "description" : "the Policy status"
- }
- },
- "description" : "Status for one A1-P Policy"
-}; - defs["PolicyTypeInformation"] = {
- "required" : [ "nearRtRicId", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type",
- "example" : {
- "policyTypeId" : "STD_QOS2_0.1.0",
- "nearRtRicId" : "ricsim_g3_2"
- }
-}; - defs["PolicyTypeObject"] = {
- "required" : [ "policySchema" ],
- "type" : "object",
- "properties" : {
- "policySchema" : {
- "$ref" : "#/components/schemas/PolicySchema"
- },
- "statusSchema" : {
- "$ref" : "#/components/schemas/StatusSchema"
- }
- },
- "description" : "policy type object as defined in A1TD",
- "example" : {
- "policySchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0_2_0",
- "description" : "STD QOS policy type",
- "type" : "object",
- "properties" : {
- "scope" : {
- "type" : "object",
- "properties" : {
- "ueId" : {
- "type" : "string"
- },
- "qosId" : {
- "type" : "string"
- }
- },
- "additionalProperties" : false,
- "required" : [ "ueId", "qosId" ]
- },
- "qosObjectives" : {
- "type" : "object",
- "properties" : {
- "priorityLevel" : {
- "type" : "number"
- }
- },
- "additionalProperties" : false,
- "required" : [ "priorityLevel" ]
- }
- }
- },
- "statusSchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0.2.0",
- "description" : "STD QOS policy type status",
- "type" : "object",
- "properties" : {
- "enforceStatus" : {
- "type" : "string"
- },
- "enforceReason" : {
- "type" : "string"
- },
- "additionalProperties" : false,
- "required" : [ "enforceStatus" ]
- }
- }
- }
-}; - defs["ProblemDetails"] = {
- "type" : "object",
- "properties" : {
- "type" : {
- "type" : "string",
- "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type"
- },
- "title" : {
- "type" : "string",
- "description" : "human-readable summary of the problem type"
- },
- "status" : {
- "type" : "number",
- "description" : "the HTTP status code"
- },
- "detail" : {
- "type" : "string",
- "description" : "human-readable explanation "
- },
- "instance" : {
- "type" : "string",
- "description" : "URI reference that identifies the specific occurrence of the problem"
- }
- },
- "description" : "A problem detail to carry details in an HTTP response according to RFC 7807"
-}; - defs["RicInfo"] = {
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of the Near-RT RIC"
- },
- "managedElementIds" : {
- "type" : "array",
- "description" : "O1 identities for managed entities",
- "items" : {
- "type" : "string",
- "description" : "O1 identities for managed entities"
- }
- },
- "state" : {
- "type" : "string",
- "description" : "Represents the states for a Near-RT RIC",
- "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ]
- },
- "policyTypeIds" : {
- "type" : "array",
- "description" : "supported policy types",
- "items" : {
- "type" : "string",
- "description" : "supported policy types"
- }
- }
- },
- "description" : "Information for a Near-RT RIC"
-}; - defs["RicInfoList"] = {
- "type" : "object",
- "properties" : {
- "rics" : {
- "type" : "array",
- "description" : "List of Near-RT RIC information",
- "items" : {
- "$ref" : "#/components/schemas/RicInfo"
- }
- }
- },
- "description" : "List of Near-RT RIC information"
-}; - defs["ServiceCallbackInfo"] = {
- "required" : [ "eventType", "ricId" ],
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of a Near-RT RIC"
- },
- "eventType" : {
- "type" : "string",
- "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management",
- "enum" : [ "AVAILABLE" ]
- }
- },
- "description" : "Information transferred as in Service callbacks (callback_url)"
-}; - defs["ServiceRegistrationInfo"] = {
- "required" : [ "serviceId" ],
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of Near-RT RIC state changes"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.",
- "format" : "int64"
- }
- },
- "description" : "Information for one service"
-}; - defs["ServiceStatus"] = {
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of RIC synchronization"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "policy keep alive timeout",
- "format" : "int64"
- },
- "timeSinceLastActivitySeconds" : {
- "type" : "integer",
- "description" : "time since last invocation by the service",
- "format" : "int64"
- }
- }
-}; - defs["ServiceStatusList"] = {
- "type" : "object",
- "properties" : {
- "serviceList" : {
- "type" : "array",
- "description" : "List of service information",
- "items" : {
- "$ref" : "#/components/schemas/ServiceStatus"
- }
- }
- }
-}; - defs["StatusInfo"] = {
- "type" : "object",
- "properties" : {
- "status" : {
- "type" : "string",
- "description" : "status text"
- }
- }
-}; - - defs["NearRtRicId"] = {
- "type" : "string",
- "description" : "Identity of the policy"
+ defs["AuthorizationResult"] = { + "required" : [ "result" ], + "type" : "object", + "properties" : { + "result" : { + "type" : "boolean", + "description" : "If true, the access is granted" + } + }, + "description" : "Result of authorization", + "example" : { + "result" : true + } +}; + defs["ErrorInformation"] = { + "type" : "object", + "properties" : { + "detail" : { + "type" : "string", + "description" : " A human-readable explanation specific to this occurrence of the problem.", + "example" : "Policy type not found" + }, + "title" : { + "type" : "string", + "description" : "A specific error name", + "example" : "Not Found" + }, + "status" : { + "type" : "integer", + "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ", + "format" : "int32", + "example" : 404 + } + }, + "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807" +}; + defs["input"] = { + "required" : [ "accessType", "authToken", "policyTypeId" ], + "type" : "object", + "properties" : { + "accessType" : { + "type" : "string", + "description" : "Access type", + "enum" : [ "READ", "WRITE", "DELETE" ] + }, + "authToken" : { + "type" : "string", + "description" : "Authorization token" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Policy type identifier" + } + }, + "description" : "input" +}; + defs["Link"] = { + "type" : "object", + "properties" : { + "templated" : { + "type" : "boolean" + }, + "href" : { + "type" : "string" + } + } +}; + defs["PolicyAuthorization"] = { + "required" : [ "input" ], + "type" : "object", + "properties" : { + "input" : { + "$ref" : "#/components/schemas/input" + } + }, + "description" : "Authorization request for A1 policy requests" +}; + defs["PolicyInformation"] = { + "required" : [ "nearRtRicId", "policyId" ], + "type" : "object", + "properties" : { + "policyId" : { + "type" : "string", + "description" : "Identity of the policy" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC" +}; + defs["PolicyObjectInformation"] = { + "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ], + "type" : "object", + "properties" : { + "nearRtRicId" : { + "type" : "string", + "description" : "Identity of the target Near-RT RIC", + "example" : "Near-RT-Ric-ID" + }, + "transient" : { + "type" : "boolean", + "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.", + "nullable" : false, + "default" : false + }, + "policyId" : { + "type" : "string", + "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.", + "example" : "POLICY-ID" + }, + "serviceId" : { + "type" : "string", + "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", + "example" : "rApp ID", + "default" : "" + }, + "policyObject" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type", + "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)" + } + }, + "description" : "Information related to the creation of the policy" +}; + defs["PolicyStatusInfo"] = { + "type" : "object", + "properties" : { + "lastModified" : { + "type" : "string", + "description" : "timestamp, last modification time" + }, + "status" : { + "type" : "object", + "description" : "the Policy status" + } + }, + "description" : "Status for one A1-P Policy" +}; + defs["PolicyTypeInformation"] = { + "required" : [ "nearRtRicId", "policyTypeId" ], + "type" : "object", + "properties" : { + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type", + "example" : { + "policyTypeId" : "STD_QOS2_0.1.0", + "nearRtRicId" : "ricsim_g3_2" + } +}; + defs["PolicyTypeObject"] = { + "required" : [ "policySchema" ], + "type" : "object", + "properties" : { + "policySchema" : { + "$ref" : "#/components/schemas/PolicySchema" + }, + "statusSchema" : { + "$ref" : "#/components/schemas/StatusSchema" + } + }, + "description" : "policy type object as defined in A1TD", + "example" : { + "policySchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0_2_0", + "description" : "STD QOS policy type", + "type" : "object", + "properties" : { + "scope" : { + "type" : "object", + "properties" : { + "ueId" : { + "type" : "string" + }, + "qosId" : { + "type" : "string" + } + }, + "additionalProperties" : false, + "required" : [ "ueId", "qosId" ] + }, + "qosObjectives" : { + "type" : "object", + "properties" : { + "priorityLevel" : { + "type" : "number" + } + }, + "additionalProperties" : false, + "required" : [ "priorityLevel" ] + } + } + }, + "statusSchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0.2.0", + "description" : "STD QOS policy type status", + "type" : "object", + "properties" : { + "enforceStatus" : { + "type" : "string" + }, + "enforceReason" : { + "type" : "string" + }, + "additionalProperties" : false, + "required" : [ "enforceStatus" ] + } + } + } +}; + defs["ProblemDetails"] = { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type" + }, + "title" : { + "type" : "string", + "description" : "human-readable summary of the problem type" + }, + "status" : { + "type" : "number", + "description" : "the HTTP status code" + }, + "detail" : { + "type" : "string", + "description" : "human-readable explanation " + }, + "instance" : { + "type" : "string", + "description" : "URI reference that identifies the specific occurrence of the problem" + } + }, + "description" : "A problem detail to carry details in an HTTP response according to RFC 7807" +}; + defs["RicInfo"] = { + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of the Near-RT RIC" + }, + "managedElementIds" : { + "type" : "array", + "description" : "O1 identities for managed entities", + "items" : { + "type" : "string", + "description" : "O1 identities for managed entities" + } + }, + "state" : { + "type" : "string", + "description" : "Represents the states for a Near-RT RIC", + "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ] + }, + "policyTypeIds" : { + "type" : "array", + "description" : "supported policy types", + "items" : { + "type" : "string", + "description" : "supported policy types" + } + } + }, + "description" : "Information for a Near-RT RIC" +}; + defs["RicInfoList"] = { + "type" : "object", + "properties" : { + "rics" : { + "type" : "array", + "description" : "List of Near-RT RIC information", + "items" : { + "$ref" : "#/components/schemas/RicInfo" + } + } + }, + "description" : "List of Near-RT RIC information" +}; + defs["ServiceCallbackInfo"] = { + "required" : [ "eventType", "ricId" ], + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of a Near-RT RIC" + }, + "eventType" : { + "type" : "string", + "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management", + "enum" : [ "AVAILABLE" ] + } + }, + "description" : "Information transferred as in Service callbacks (callback_url)" +}; + defs["ServiceRegistrationInfo"] = { + "required" : [ "serviceId" ], + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of Near-RT RIC state changes" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.", + "format" : "int64" + } + }, + "description" : "Information for one service" +}; + defs["ServiceStatus"] = { + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of RIC synchronization" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "policy keep alive timeout", + "format" : "int64" + }, + "timeSinceLastActivitySeconds" : { + "type" : "integer", + "description" : "time since last invocation by the service", + "format" : "int64" + } + } +}; + defs["ServiceStatusList"] = { + "type" : "object", + "properties" : { + "serviceList" : { + "type" : "array", + "description" : "List of service information", + "items" : { + "$ref" : "#/components/schemas/ServiceStatus" + } + } + } +}; + defs["StatusInfo"] = { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "description" : "status text" + } + } +}; + + defs["NearRtRicId"] = { + "type" : "string", + "description" : "Identity of the policy" }; var errs = {}; @@ -1326,13 +1326,13 @@ ul.nav-tabs { -H "Accept: application/json,application/problem+json" \ -H "Content-Type: application/json" \ "https://example.com/a1-policy-management/v1/policies" \ - -d '{
- "policyId" : "POLICY-ID",
- "nearRtRicId" : "Near-RT-Ric-ID",
- "transient" : false,
- "policyObject" : "{}",
- "serviceId" : "rApp ID",
- "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
+ -d '{ + "policyId" : "POLICY-ID", + "nearRtRicId" : "Near-RT-Ric-ID", + "transient" : false, + "policyObject" : "{}", + "serviceId" : "rApp ID", + "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)" }' </code></pre> </div> @@ -1561,15 +1561,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -1635,26 +1635,26 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Success case 201 created",
- "headers" : {
- "Location" : {
- "description" : "Contains the URI of the newly created resource",
- "required" : true,
- "style" : "simple",
- "explode" : false,
- "schema" : {
- "type" : "string"
- }
- }
- },
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Success case 201 created", + "headers" : { + "Location" : { + "description" : "Contains the URI of the newly created resource", + "required" : true, + "style" : "simple", + "explode" : false, + "schema" : { + "type" : "string" + } + } + }, + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1738,15 +1738,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1814,15 +1814,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1890,15 +1890,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1966,15 +1966,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2042,15 +2042,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2118,15 +2118,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2194,15 +2194,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-409" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Conflict",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Conflict", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2270,15 +2270,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2346,15 +2346,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2422,20 +2422,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2503,15 +2503,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2579,15 +2579,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2655,15 +2655,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2731,15 +2731,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3123,8 +3123,8 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "The A1 policy was deleted"
+ var schemaWrapper = { + "description" : "The A1 policy was deleted" }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3192,15 +3192,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3268,15 +3268,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3344,15 +3344,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3420,15 +3420,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3496,15 +3496,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3572,15 +3572,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3648,20 +3648,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3729,15 +3729,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3805,15 +3805,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3881,15 +3881,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3957,15 +3957,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4456,18 +4456,18 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy identities",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy identities", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4535,15 +4535,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4611,15 +4611,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4687,15 +4687,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4763,15 +4763,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4839,15 +4839,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4915,15 +4915,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4991,15 +4991,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5067,15 +5067,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5143,15 +5143,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5546,20 +5546,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5627,15 +5627,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5703,15 +5703,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5779,15 +5779,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5855,15 +5855,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5931,15 +5931,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6007,15 +6007,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6083,15 +6083,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6159,15 +6159,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6235,15 +6235,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6638,15 +6638,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyStatusObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyStatusObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6714,15 +6714,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6790,15 +6790,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6866,15 +6866,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6942,15 +6942,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7018,15 +7018,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7094,15 +7094,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7170,15 +7170,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7246,15 +7246,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7322,15 +7322,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7725,20 +7725,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - schema of the given policy type",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyTypeObject"
- },
- "examples" : {
- "PolicyTypeObject" : {
- "$ref" : "#/components/examples/PolicyTypeObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - schema of the given policy type", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyTypeObject" + }, + "examples" : { + "PolicyTypeObject" : { + "$ref" : "#/components/examples/PolicyTypeObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7806,15 +7806,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7882,15 +7882,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7958,15 +7958,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8034,15 +8034,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8110,15 +8110,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8186,15 +8186,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8262,15 +8262,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8338,15 +8338,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8414,15 +8414,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8879,23 +8879,23 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy Type IDs found Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyTypeInformation"
- }
- },
- "examples" : {
- "PolicyTypeInformation" : {
- "$ref" : "#/components/examples/PolicyTypeInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy Type IDs found Ok", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyTypeInformation" + } + }, + "examples" : { + "PolicyTypeInformation" : { + "$ref" : "#/components/examples/PolicyTypeInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8963,15 +8963,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9039,15 +9039,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9115,15 +9115,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9191,15 +9191,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9267,15 +9267,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9343,15 +9343,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9419,15 +9419,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9495,15 +9495,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9571,15 +9571,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9924,20 +9924,20 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -10000,15 +10000,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy updated",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy updated", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10076,15 +10076,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10152,15 +10152,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10228,15 +10228,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10304,15 +10304,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10380,15 +10380,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10456,15 +10456,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-411" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Length Required",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Length Required", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10532,15 +10532,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10608,15 +10608,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10684,20 +10684,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10765,15 +10765,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10841,15 +10841,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10917,15 +10917,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10993,15 +10993,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { diff --git a/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html b/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html index 37f3436f..da6b47d6 100644 --- a/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html +++ b/a1-policy-management/api/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html @@ -844,382 +844,382 @@ ul.nav-tabs { <script> // Script section to load models into a JS Var var defs = {} - defs["AuthorizationResult"] = {
- "required" : [ "result" ],
- "type" : "object",
- "properties" : {
- "result" : {
- "type" : "boolean",
- "description" : "If true, the access is granted"
- }
- },
- "description" : "Result of authorization",
- "example" : {
- "result" : true
- }
+ defs["AuthorizationResult"] = { + "required" : [ "result" ], + "type" : "object", + "properties" : { + "result" : { + "type" : "boolean", + "description" : "If true, the access is granted" + } + }, + "description" : "Result of authorization", + "example" : { + "result" : true + } }; - defs["ErrorInformation"] = {
- "type" : "object",
- "properties" : {
- "detail" : {
- "type" : "string",
- "description" : " A human-readable explanation specific to this occurrence of the problem.",
- "example" : "Policy type not found"
- },
- "title" : {
- "type" : "string",
- "description" : "A specific error name",
- "example" : "Not Found"
- },
- "status" : {
- "type" : "integer",
- "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ",
- "format" : "int32",
- "example" : 404
- }
- },
- "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807"
+ defs["ErrorInformation"] = { + "type" : "object", + "properties" : { + "detail" : { + "type" : "string", + "description" : " A human-readable explanation specific to this occurrence of the problem.", + "example" : "Policy type not found" + }, + "title" : { + "type" : "string", + "description" : "A specific error name", + "example" : "Not Found" + }, + "status" : { + "type" : "integer", + "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ", + "format" : "int32", + "example" : 404 + } + }, + "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807" }; - defs["input"] = {
- "required" : [ "accessType", "authToken", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "accessType" : {
- "type" : "string",
- "description" : "Access type",
- "enum" : [ "READ", "WRITE", "DELETE" ]
- },
- "authToken" : {
- "type" : "string",
- "description" : "Authorization token"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Policy type identifier"
- }
- },
- "description" : "input"
+ defs["input"] = { + "required" : [ "accessType", "authToken", "policyTypeId" ], + "type" : "object", + "properties" : { + "accessType" : { + "type" : "string", + "description" : "Access type", + "enum" : [ "READ", "WRITE", "DELETE" ] + }, + "authToken" : { + "type" : "string", + "description" : "Authorization token" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Policy type identifier" + } + }, + "description" : "input" }; - defs["Link"] = {
- "type" : "object",
- "properties" : {
- "templated" : {
- "type" : "boolean"
- },
- "href" : {
- "type" : "string"
- }
- }
+ defs["Link"] = { + "type" : "object", + "properties" : { + "templated" : { + "type" : "boolean" + }, + "href" : { + "type" : "string" + } + } }; - defs["PolicyAuthorization"] = {
- "required" : [ "input" ],
- "type" : "object",
- "properties" : {
- "input" : {
- "$ref" : "#/components/schemas/input"
- }
- },
- "description" : "Authorization request for A1 policy requests"
+ defs["PolicyAuthorization"] = { + "required" : [ "input" ], + "type" : "object", + "properties" : { + "input" : { + "$ref" : "#/components/schemas/input" + } + }, + "description" : "Authorization request for A1 policy requests" }; - defs["PolicyInformation"] = {
- "required" : [ "nearRtRicId", "policyId" ],
- "type" : "object",
- "properties" : {
- "policyId" : {
- "type" : "string",
- "description" : "Identity of the policy"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC"
+ defs["PolicyInformation"] = { + "required" : [ "nearRtRicId", "policyId" ], + "type" : "object", + "properties" : { + "policyId" : { + "type" : "string", + "description" : "Identity of the policy" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC" }; - defs["PolicyObjectInformation"] = {
- "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "nearRtRicId" : {
- "type" : "string",
- "description" : "Identity of the target Near-RT RIC",
- "example" : "Near-RT-Ric-ID"
- },
- "transient" : {
- "type" : "boolean",
- "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.",
- "nullable" : false,
- "default" : false
- },
- "policyId" : {
- "type" : "string",
- "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.",
- "example" : "POLICY-ID"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.",
- "example" : "rApp ID",
- "default" : ""
- },
- "policyObject" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type",
- "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
- }
- },
- "description" : "Information related to the creation of the policy"
+ defs["PolicyObjectInformation"] = { + "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ], + "type" : "object", + "properties" : { + "nearRtRicId" : { + "type" : "string", + "description" : "Identity of the target Near-RT RIC", + "example" : "Near-RT-Ric-ID" + }, + "transient" : { + "type" : "boolean", + "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.", + "nullable" : false, + "default" : false + }, + "policyId" : { + "type" : "string", + "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.", + "example" : "POLICY-ID" + }, + "serviceId" : { + "type" : "string", + "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", + "example" : "rApp ID", + "default" : "" + }, + "policyObject" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type", + "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)" + } + }, + "description" : "Information related to the creation of the policy" }; - defs["PolicyStatusInfo"] = {
- "type" : "object",
- "properties" : {
- "lastModified" : {
- "type" : "string",
- "description" : "timestamp, last modification time"
- },
- "status" : {
- "type" : "object",
- "description" : "the Policy status"
- }
- },
- "description" : "Status for one A1-P Policy"
+ defs["PolicyStatusInfo"] = { + "type" : "object", + "properties" : { + "lastModified" : { + "type" : "string", + "description" : "timestamp, last modification time" + }, + "status" : { + "type" : "object", + "description" : "the Policy status" + } + }, + "description" : "Status for one A1-P Policy" }; - defs["PolicyTypeInformation"] = {
- "required" : [ "nearRtRicId", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type",
- "example" : {
- "policyTypeId" : "STD_QOS2_0.1.0",
- "nearRtRicId" : "ricsim_g3_2"
- }
+ defs["PolicyTypeInformation"] = { + "required" : [ "nearRtRicId", "policyTypeId" ], + "type" : "object", + "properties" : { + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type", + "example" : { + "policyTypeId" : "STD_QOS2_0.1.0", + "nearRtRicId" : "ricsim_g3_2" + } }; - defs["PolicyTypeObject"] = {
- "required" : [ "policySchema" ],
- "type" : "object",
- "properties" : {
- "policySchema" : {
- "$ref" : "#/components/schemas/PolicySchema"
- },
- "statusSchema" : {
- "$ref" : "#/components/schemas/StatusSchema"
- }
- },
- "description" : "policy type object as defined in A1TD",
- "example" : {
- "policySchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0_2_0",
- "description" : "STD QOS policy type",
- "type" : "object",
- "properties" : {
- "scope" : {
- "type" : "object",
- "properties" : {
- "ueId" : {
- "type" : "string"
- },
- "qosId" : {
- "type" : "string"
- }
- },
- "additionalProperties" : false,
- "required" : [ "ueId", "qosId" ]
- },
- "qosObjectives" : {
- "type" : "object",
- "properties" : {
- "priorityLevel" : {
- "type" : "number"
- }
- },
- "additionalProperties" : false,
- "required" : [ "priorityLevel" ]
- }
- }
- },
- "statusSchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0.2.0",
- "description" : "STD QOS policy type status",
- "type" : "object",
- "properties" : {
- "enforceStatus" : {
- "type" : "string"
- },
- "enforceReason" : {
- "type" : "string"
- },
- "additionalProperties" : false,
- "required" : [ "enforceStatus" ]
- }
- }
- }
+ defs["PolicyTypeObject"] = { + "required" : [ "policySchema" ], + "type" : "object", + "properties" : { + "policySchema" : { + "$ref" : "#/components/schemas/PolicySchema" + }, + "statusSchema" : { + "$ref" : "#/components/schemas/StatusSchema" + } + }, + "description" : "policy type object as defined in A1TD", + "example" : { + "policySchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0_2_0", + "description" : "STD QOS policy type", + "type" : "object", + "properties" : { + "scope" : { + "type" : "object", + "properties" : { + "ueId" : { + "type" : "string" + }, + "qosId" : { + "type" : "string" + } + }, + "additionalProperties" : false, + "required" : [ "ueId", "qosId" ] + }, + "qosObjectives" : { + "type" : "object", + "properties" : { + "priorityLevel" : { + "type" : "number" + } + }, + "additionalProperties" : false, + "required" : [ "priorityLevel" ] + } + } + }, + "statusSchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0.2.0", + "description" : "STD QOS policy type status", + "type" : "object", + "properties" : { + "enforceStatus" : { + "type" : "string" + }, + "enforceReason" : { + "type" : "string" + }, + "additionalProperties" : false, + "required" : [ "enforceStatus" ] + } + } + } }; - defs["ProblemDetails"] = {
- "type" : "object",
- "properties" : {
- "type" : {
- "type" : "string",
- "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type"
- },
- "title" : {
- "type" : "string",
- "description" : "human-readable summary of the problem type"
- },
- "status" : {
- "type" : "number",
- "description" : "the HTTP status code"
- },
- "detail" : {
- "type" : "string",
- "description" : "human-readable explanation "
- },
- "instance" : {
- "type" : "string",
- "description" : "URI reference that identifies the specific occurrence of the problem"
- }
- },
- "description" : "A problem detail to carry details in an HTTP response according to RFC 7807"
+ defs["ProblemDetails"] = { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type" + }, + "title" : { + "type" : "string", + "description" : "human-readable summary of the problem type" + }, + "status" : { + "type" : "number", + "description" : "the HTTP status code" + }, + "detail" : { + "type" : "string", + "description" : "human-readable explanation " + }, + "instance" : { + "type" : "string", + "description" : "URI reference that identifies the specific occurrence of the problem" + } + }, + "description" : "A problem detail to carry details in an HTTP response according to RFC 7807" }; - defs["RicInfo"] = {
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of the Near-RT RIC"
- },
- "managedElementIds" : {
- "type" : "array",
- "description" : "O1 identities for managed entities",
- "items" : {
- "type" : "string",
- "description" : "O1 identities for managed entities"
- }
- },
- "state" : {
- "type" : "string",
- "description" : "Represents the states for a Near-RT RIC",
- "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ]
- },
- "policyTypeIds" : {
- "type" : "array",
- "description" : "supported policy types",
- "items" : {
- "type" : "string",
- "description" : "supported policy types"
- }
- }
- },
- "description" : "Information for a Near-RT RIC"
+ defs["RicInfo"] = { + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of the Near-RT RIC" + }, + "managedElementIds" : { + "type" : "array", + "description" : "O1 identities for managed entities", + "items" : { + "type" : "string", + "description" : "O1 identities for managed entities" + } + }, + "state" : { + "type" : "string", + "description" : "Represents the states for a Near-RT RIC", + "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ] + }, + "policyTypeIds" : { + "type" : "array", + "description" : "supported policy types", + "items" : { + "type" : "string", + "description" : "supported policy types" + } + } + }, + "description" : "Information for a Near-RT RIC" }; - defs["RicInfoList"] = {
- "type" : "object",
- "properties" : {
- "rics" : {
- "type" : "array",
- "description" : "List of Near-RT RIC information",
- "items" : {
- "$ref" : "#/components/schemas/RicInfo"
- }
- }
- },
- "description" : "List of Near-RT RIC information"
+ defs["RicInfoList"] = { + "type" : "object", + "properties" : { + "rics" : { + "type" : "array", + "description" : "List of Near-RT RIC information", + "items" : { + "$ref" : "#/components/schemas/RicInfo" + } + } + }, + "description" : "List of Near-RT RIC information" }; - defs["ServiceCallbackInfo"] = {
- "required" : [ "eventType", "ricId" ],
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of a Near-RT RIC"
- },
- "eventType" : {
- "type" : "string",
- "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management",
- "enum" : [ "AVAILABLE" ]
- }
- },
- "description" : "Information transferred as in Service callbacks (callback_url)"
+ defs["ServiceCallbackInfo"] = { + "required" : [ "eventType", "ricId" ], + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of a Near-RT RIC" + }, + "eventType" : { + "type" : "string", + "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management", + "enum" : [ "AVAILABLE" ] + } + }, + "description" : "Information transferred as in Service callbacks (callback_url)" }; - defs["ServiceRegistrationInfo"] = {
- "required" : [ "serviceId" ],
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of Near-RT RIC state changes"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.",
- "format" : "int64"
- }
- },
- "description" : "Information for one service"
+ defs["ServiceRegistrationInfo"] = { + "required" : [ "serviceId" ], + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of Near-RT RIC state changes" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.", + "format" : "int64" + } + }, + "description" : "Information for one service" }; - defs["ServiceStatus"] = {
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of RIC synchronization"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "policy keep alive timeout",
- "format" : "int64"
- },
- "timeSinceLastActivitySeconds" : {
- "type" : "integer",
- "description" : "time since last invocation by the service",
- "format" : "int64"
- }
- }
+ defs["ServiceStatus"] = { + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of RIC synchronization" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "policy keep alive timeout", + "format" : "int64" + }, + "timeSinceLastActivitySeconds" : { + "type" : "integer", + "description" : "time since last invocation by the service", + "format" : "int64" + } + } }; - defs["ServiceStatusList"] = {
- "type" : "object",
- "properties" : {
- "serviceList" : {
- "type" : "array",
- "description" : "List of service information",
- "items" : {
- "$ref" : "#/components/schemas/ServiceStatus"
- }
- }
- }
+ defs["ServiceStatusList"] = { + "type" : "object", + "properties" : { + "serviceList" : { + "type" : "array", + "description" : "List of service information", + "items" : { + "$ref" : "#/components/schemas/ServiceStatus" + } + } + } }; - defs["StatusInfo"] = {
- "type" : "object",
- "properties" : {
- "status" : {
- "type" : "string",
- "description" : "status text"
- }
- }
+ defs["StatusInfo"] = { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "description" : "status text" + } + } }; - defs["NearRtRicId"] = {
- "type" : "string",
- "description" : "Identity of the policy"
+ defs["NearRtRicId"] = { + "type" : "string", + "description" : "Identity of the policy" }; var errs = {}; @@ -1357,13 +1357,13 @@ ul.nav-tabs { -H "Accept: application/json,application/problem+json" \ -H "Content-Type: application/json" \ "https://example.com/a1-policy-management/v1/policies" \ - -d '{
- "policyId" : "POLICY-ID",
- "nearRtRicId" : "Near-RT-Ric-ID",
- "transient" : false,
- "policyObject" : "{}",
- "serviceId" : "rApp ID",
- "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
+ -d '{ + "policyId" : "POLICY-ID", + "nearRtRicId" : "Near-RT-Ric-ID", + "transient" : false, + "policyObject" : "{}", + "serviceId" : "rApp ID", + "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)" }' </code></pre> </div> @@ -1592,15 +1592,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -1666,26 +1666,26 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Success case 201 created",
- "headers" : {
- "Location" : {
- "description" : "Contains the URI of the newly created resource",
- "required" : true,
- "style" : "simple",
- "explode" : false,
- "schema" : {
- "type" : "string"
- }
- }
- },
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Success case 201 created", + "headers" : { + "Location" : { + "description" : "Contains the URI of the newly created resource", + "required" : true, + "style" : "simple", + "explode" : false, + "schema" : { + "type" : "string" + } + } + }, + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1769,15 +1769,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1845,15 +1845,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1921,15 +1921,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1997,15 +1997,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2073,15 +2073,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2149,15 +2149,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2225,15 +2225,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-409" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Conflict",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Conflict", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2301,15 +2301,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2377,15 +2377,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2453,20 +2453,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2534,15 +2534,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2610,15 +2610,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2686,15 +2686,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2762,15 +2762,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3154,8 +3154,8 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "The A1 policy was deleted"
+ var schemaWrapper = { + "description" : "The A1 policy was deleted" }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3223,15 +3223,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3299,15 +3299,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3375,15 +3375,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3451,15 +3451,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3527,15 +3527,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3603,15 +3603,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3679,20 +3679,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3760,15 +3760,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3836,15 +3836,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3912,15 +3912,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3988,15 +3988,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4487,18 +4487,18 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy identities",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy identities", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4566,15 +4566,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4642,15 +4642,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4718,15 +4718,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4794,15 +4794,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4870,15 +4870,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4946,15 +4946,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5022,15 +5022,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5098,15 +5098,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5174,15 +5174,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5577,20 +5577,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5658,15 +5658,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5734,15 +5734,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5810,15 +5810,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5886,15 +5886,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5962,15 +5962,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6038,15 +6038,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6114,15 +6114,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6190,15 +6190,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6266,15 +6266,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6669,15 +6669,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyStatusObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyStatusObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6745,15 +6745,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6821,15 +6821,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6897,15 +6897,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6973,15 +6973,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7049,15 +7049,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7125,15 +7125,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7201,15 +7201,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7277,15 +7277,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7353,15 +7353,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7756,20 +7756,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - schema of the given policy type",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyTypeObject"
- },
- "examples" : {
- "PolicyTypeObject" : {
- "$ref" : "#/components/examples/PolicyTypeObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - schema of the given policy type", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyTypeObject" + }, + "examples" : { + "PolicyTypeObject" : { + "$ref" : "#/components/examples/PolicyTypeObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7837,15 +7837,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7913,15 +7913,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7989,15 +7989,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8065,15 +8065,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8141,15 +8141,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8217,15 +8217,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8293,15 +8293,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8369,15 +8369,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8445,15 +8445,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8910,23 +8910,23 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy Type IDs found Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyTypeInformation"
- }
- },
- "examples" : {
- "PolicyTypeInformation" : {
- "$ref" : "#/components/examples/PolicyTypeInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy Type IDs found Ok", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyTypeInformation" + } + }, + "examples" : { + "PolicyTypeInformation" : { + "$ref" : "#/components/examples/PolicyTypeInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8994,15 +8994,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9070,15 +9070,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9146,15 +9146,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9222,15 +9222,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9298,15 +9298,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9374,15 +9374,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9450,15 +9450,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9526,15 +9526,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9602,15 +9602,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9955,20 +9955,20 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -10031,15 +10031,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy updated",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy updated", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10107,15 +10107,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10183,15 +10183,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10259,15 +10259,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10335,15 +10335,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10411,15 +10411,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10487,15 +10487,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-411" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Length Required",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Length Required", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10563,15 +10563,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10639,15 +10639,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10715,20 +10715,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10796,15 +10796,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10872,15 +10872,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10948,15 +10948,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11024,15 +11024,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11352,15 +11352,15 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Application configuration received",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "string"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Application configuration received", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11428,15 +11428,15 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11743,15 +11743,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "object"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "type" : "object" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -11814,15 +11814,15 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Configuration updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Configuration updated", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11890,15 +11890,15 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -12218,20 +12218,20 @@ pub fn main() { <div id="responses-HealthCheck-getStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK- Service is living Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/StatusInfo"
- },
- "examples" : {
- "status_info" : {
- "$ref" : "#/components/examples/StatusInfo"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK- Service is living Ok", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/StatusInfo" + }, + "examples" : { + "status_info" : { + "$ref" : "#/components/examples/StatusInfo" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -12663,20 +12663,20 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Near-RT RIC is found OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/RicInfo"
- },
- "examples" : {
- "ric_info" : {
- "$ref" : "#/components/examples/RicInfo"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Near-RT RIC is found OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/RicInfo" + }, + "examples" : { + "ric_info" : { + "$ref" : "#/components/examples/RicInfo" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -12744,15 +12744,15 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13150,20 +13150,20 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/RicInfoList"
- },
- "examples" : {
- "ric_info_list" : {
- "$ref" : "#/components/examples/RicInfoList"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/RicInfoList" + }, + "examples" : { + "ric_info_list" : { + "$ref" : "#/components/examples/RicInfoList" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13231,15 +13231,15 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13637,15 +13637,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "No Content - Service unregistered",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "No Content - Service unregistered", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13713,15 +13713,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14119,20 +14119,20 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ServiceStatusList"
- },
- "examples" : {
- "service_status_list" : {
- "$ref" : "#/components/examples/ServiceStatusList"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ServiceStatusList" + }, + "examples" : { + "service_status_list" : { + "$ref" : "#/components/examples/ServiceStatusList" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14200,15 +14200,15 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14596,15 +14596,15 @@ Specifies the content type that the client expects to receive in response to the <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "string"
- }
- }
- },
- "required" : false
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + }, + "required" : false }; var schema = findNode('schema',schemaWrapper).schema; @@ -14667,15 +14667,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service supervision timer refreshed, OK",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service supervision timer refreshed, OK", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14743,15 +14743,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14830,10 +14830,10 @@ $(document).ready(function() { -H "Accept: */*,application/problem+json" \ -H "Content-Type: application/json" \ "https://example.com/a1-policy-management/v1/services" \ - -d '{
- "keepAliveIntervalSeconds" : 0,
- "callbackUrl" : "callbackUrl",
- "serviceId" : "serviceId"
+ -d '{ + "keepAliveIntervalSeconds" : 0, + "callbackUrl" : "callbackUrl", + "serviceId" : "serviceId" }' </code></pre> </div> @@ -15065,15 +15065,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ServiceRegistrationInfo"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ServiceRegistrationInfo" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -15136,15 +15136,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service updated", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -15212,15 +15212,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Created - Service created",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Created - Service created", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -15288,15 +15288,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { diff --git a/a1-policy-management/api/offeredapis/swagger/custom/a1pms-api-custom-v3.json b/a1-policy-management/api/offeredapis/swagger/custom/a1pms-api-custom-v3.json index 0fc875fa..f923650c 100644 --- a/a1-policy-management/api/offeredapis/swagger/custom/a1pms-api-custom-v3.json +++ b/a1-policy-management/api/offeredapis/swagger/custom/a1pms-api-custom-v3.json @@ -2092,6 +2092,7 @@ "type" : "string" }, "serviceId" : { + "default" : "", "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", "example" : "rApp ID", "type" : "string" diff --git a/a1-policy-management/config/application.yaml b/a1-policy-management/config/application.yaml index b576ca8d..47d038ea 100644 --- a/a1-policy-management/config/application.yaml +++ b/a1-policy-management/config/application.yaml @@ -62,7 +62,9 @@ app: validate-policy-instance-schema: NONE lifecycle: timeout-per-shutdown-phase: "20s" + logging: + config: ${LOGBACK_CONFIG_FILE:classpath:logback-plain.xml} # Reactive logging filter reactive-entry-exit-filter-enabled: true # Configuration of logging @@ -152,4 +154,4 @@ spring: username: a1pms password: mypwd springdoc: - show-actuator: true
\ No newline at end of file + show-actuator: true diff --git a/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/util/v3/ReactiveEntryExitFilter.java b/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/util/v3/ReactiveEntryExitFilter.java index 01830ff4..2bb9dd03 100644 --- a/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/util/v3/ReactiveEntryExitFilter.java +++ b/a1-policy-management/src/main/java/org/onap/ccsdk/oran/a1policymanagementservice/util/v3/ReactiveEntryExitFilter.java @@ -2,7 +2,7 @@ * ========================LICENSE_START================================= * ONAP : ccsdk oran * ====================================================================== - * Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved. + * Copyright (C) 2024-2025 OpenInfra Foundation Europe. All rights reserved. * ====================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,13 +20,18 @@ package org.onap.ccsdk.oran.a1policymanagementservice.util.v3; +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import java.lang.invoke.MethodHandles; +import java.nio.charset.StandardCharsets; +import java.util.Base64; import org.reactivestreams.Publisher; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.slf4j.MDC; import org.springframework.core.io.buffer.DataBuffer; import org.springframework.http.server.reactive.ServerHttpRequest; import org.springframework.http.server.reactive.ServerHttpRequestDecorator; -import org.springframework.http.server.reactive.ServerHttpResponse; import org.springframework.http.server.reactive.ServerHttpResponseDecorator; import org.springframework.util.MultiValueMap; import org.springframework.web.server.ServerWebExchange; @@ -34,20 +39,26 @@ import org.springframework.web.server.WebFilter; import org.springframework.web.server.WebFilterChain; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; - -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.lang.invoke.MethodHandles; -import java.nio.channels.Channels; -import java.nio.charset.StandardCharsets; +import reactor.util.context.Context; +import reactor.util.context.ContextView; public class ReactiveEntryExitFilter implements WebFilter { private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); + private static final String BEARER_PREFIX = "Bearer "; + private static final String FACILITY_KEY = "facility"; + private static final String SUBJECT_KEY = "subject"; + @Override public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) { + + // sets FACILITY_KEY and SUBJECT_KEY in MDC + auditLog(exchange.getRequest()); + + String subject = MDC.get(SUBJECT_KEY); + String facility = MDC.get(FACILITY_KEY); + ServerHttpRequest httpRequest = exchange.getRequest(); - ServerHttpResponse httpResponse = exchange.getResponse(); MultiValueMap<String, String> queryParams = httpRequest.getQueryParams(); logger.info("Request received with path: {}, and the Request Id: {}, with HTTP Method: {}", httpRequest.getPath(), exchange.getRequest().getId(), exchange.getRequest().getMethod()); @@ -56,34 +67,91 @@ public class ReactiveEntryExitFilter implements WebFilter { ServerHttpRequestDecorator loggingServerHttpRequestDecorator = new ServerHttpRequestDecorator(exchange.getRequest()) { String requestBody; + @Override public Flux<DataBuffer> getBody() { - return super.getBody().doOnNext(dataBuffer -> { - requestBody = dataBuffer.toString(StandardCharsets.UTF_8); // Read the bytes from the DataBuffer - if (!(requestBody.isEmpty() && requestBody.isBlank())) + return Flux.deferContextual(contextView -> + // Now, return the original body flux with a doFinally to clear MDC after processing + super.getBody().doOnNext(dataBuffer -> { + requestBody = dataBuffer.toString(StandardCharsets.UTF_8); // Read the bytes from the DataBuffer logger.trace("For the request ID: {} the received request body: {}", exchange.getRequest().getId(), requestBody); - }); + }).doOnEach(signal -> MDC.clear()) + .doFinally(signal -> MDC.clear())); // Clear MDC after the request body is processed } }; ServerHttpResponseDecorator loggingServerHttpResponseDecorator = new ServerHttpResponseDecorator(exchange.getResponse()) { - String responseBody; @Override public Mono<Void> writeWith(Publisher<? extends DataBuffer> body) { - Flux<DataBuffer> buffer = Flux.from(body); - return super.writeWith(buffer.doOnNext(dataBuffer -> { -// try { - dataBuffer.toString(StandardCharsets.UTF_8); - logger.info("For the request ID: {} the Status code of the response: {}", exchange.getRequest().getId(), httpResponse.getStatusCode()); - logger.trace("For the request ID: {} the response is: {} ", exchange.getRequest().getId(), responseBody); -// } catch (Exception e) { -// logger.info("For the request ID: {} we got an Error during processing: {}", exchange.getRequest().getId(), e.getMessage()); -// logger.trace("For the request ID: {} the response body :: {}", exchange.getRequest().getId(), responseBody); -// } - })); + return Mono.deferContextual(contextView -> + super.writeWith(Flux.from(body).doOnNext(dataBuffer -> { + String responseBody = dataBuffer.toString(StandardCharsets.UTF_8); + restoreFromContextToMdc(contextView); + logger.info("For the request ID: {} the Status code of the response: {}", + exchange.getRequest().getId(), getStatusCode()); + logger.trace("For the request ID: {} the response is: {} ", + exchange.getRequest().getId(), responseBody); + })).doFinally(signalType -> MDC.clear())); // Clear MDC to prevent leakage } }; - return chain.filter(exchange.mutate().request(loggingServerHttpRequestDecorator).response(loggingServerHttpResponseDecorator).build()); + return chain.filter(exchange.mutate() + .request(loggingServerHttpRequestDecorator) + .response(loggingServerHttpResponseDecorator) + .build()) + .contextWrite(Context.of(FACILITY_KEY, facility, SUBJECT_KEY, subject)) + .doFinally(signalType -> MDC.clear()); + } + + private void auditLog(ServerHttpRequest request) { + String authHeader = request.getHeaders().getFirst("Authorization"); + String subject = "n/av"; + if (authHeader != null && authHeader.startsWith(BEARER_PREFIX)) { + String token = authHeader.substring(BEARER_PREFIX.length()); + subject = this.getSubjectFromToken(token); + } + + String facility = "log audit"; + + MDC.put(SUBJECT_KEY, subject); + MDC.put(FACILITY_KEY, facility); } + private String getSubjectFromToken(String token) { + try { + String[] chunks = token.split("\\."); + if (chunks.length < 2) { + logger.warn("Invalid JWT: Missing payload"); + return "n/av"; + } + + Base64.Decoder decoder = Base64.getUrlDecoder(); + String payload = new String(decoder.decode(chunks[1])); + JsonObject jsonObject = JsonParser.parseString(payload).getAsJsonObject(); + if (jsonObject.has("upn")) { + return sanitize(jsonObject.get("upn").getAsString()); + } else if (jsonObject.has("preferred_username")) { + return sanitize(jsonObject.get("preferred_username").getAsString()); + } else if (jsonObject.has("sub")) { + return sanitize(jsonObject.get("sub").getAsString()); + } + } catch (Exception e) { + logger.warn("Failed to extract subject from token: {}", e.getMessage()); + } + return "n/av"; + } + + private String sanitize(String input) { + if (input == null) { + return "n/av"; + } + // Replace dangerous characters + return input.replaceAll("[\r\n]", "") // Remove newlines + .replaceAll("[{}()<>]", "") // Remove brackets + .replaceAll("[^\\p{Alnum}\\p{Punct}\\s]", ""); // Remove non-printable characters + } + + private void restoreFromContextToMdc(ContextView context) { + context.getOrEmpty(FACILITY_KEY).ifPresent(value -> MDC.put(FACILITY_KEY, value.toString())); + context.getOrEmpty(SUBJECT_KEY).ifPresent(value -> MDC.put(SUBJECT_KEY, value.toString())); + } }
\ No newline at end of file diff --git a/a1-policy-management/src/main/resources/logback-plain.xml b/a1-policy-management/src/main/resources/logback-plain.xml new file mode 100644 index 00000000..0340cce8 --- /dev/null +++ b/a1-policy-management/src/main/resources/logback-plain.xml @@ -0,0 +1,40 @@ +<!-- + ~ ============LICENSE_START======================================================= + ~ ONAP : ccsdk oran + ~ ================================================================================ + ~ Copyright (C) 2025 OpenInfra Foundation Europe. All rights reserved. + ~ ================================================================================ + ~ Licensed under the Apache License, Version 2.0 (the "License"); + ~ you may not use this file except in compliance with the License. + ~ You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, software + ~ distributed under the License is distributed on an "AS IS" BASIS, + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + ~ See the License for the specific language governing permissions and + ~ limitations under the License. + ~ ============LICENSE_END======================================================= + ~ +--> +<configuration> + + <!-- Define a plain text console appender --> + <appender name="console" class="ch.qos.logback.core.ConsoleAppender"> + <encoder> + <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{55} - <!-- + -->%replace(%X{facility}){'^(.+)$','facility=$1 | '} <!-- + -->%replace(%X{subject}){'^(.+)$','subject=$1 | ' } <!-- + -->%msg%n</pattern> + </encoder> + </appender> + + + + <!-- Configure root logger to use the plain text console appender for all log levels --> + <root level="INFO"> + <appender-ref ref="console"/> + </root> + +</configuration>
\ No newline at end of file diff --git a/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/controllers/v3/PolicyControllerV3Test.java b/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/controllers/v3/PolicyControllerV3Test.java index 834b2186..2904a069 100644 --- a/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/controllers/v3/PolicyControllerV3Test.java +++ b/a1-policy-management/src/test/java/org/onap/ccsdk/oran/a1policymanagementservice/controllers/v3/PolicyControllerV3Test.java @@ -110,6 +110,16 @@ class PolicyControllerV3Test { + "ImV4cCI6MzAwMDAwMDAwMCwiY2xpZW50X2lkIjoibXljbGllbnQiLCJyb2xlIjoidXNlciJ9." + "O5QN_SWN4J1mWKyXk_-PCvOA6GF3ypv1rSdg2uTb_Ls"; + private final String bearerTokenUpn = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9." + + "eyJpc3MiOiJleGFtcGxlX2lzc3VlciIsInVwbiI6IjEyMzQ1Njc4OTAiLCJhdWQiOiJteWNsaWVu" + + "dCIsImV4cCI6MzAwMDAwMDAwMCwiY2xpZW50X2lkIjoibXljbGllbnQiLCJyb2xlIjoidXNlciJ9." + + "z3OqH4_a2jzt4XOJlUB5r9seP2ppkdYVdK1LYZXkSh4"; + + private final String bearerTokenPrefUser = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9." + + "eyJpc3MiOiJleGFtcGxlX2lzc3VlciIsInByZWZlcnJlZF91c2VybmFtZSI6IjEyMzQ1Njc4OTAiLCJh" + + "dWQiOiJteWNsaWVudCIsImV4cCI6MzAwMDAwMDAwMCwiY2xpZW50X2lkIjoibXljbGllbnQiLCJyb2xlIjoidXNlciJ9." + + "vt5K1E68zHUBkvK8lTXSLHXH6gvHdZ1RwyrhPx9qQ-Q"; + private final String emptyBearerToken = "eyJhbGciOiJIUzI1NiIsInR5cCI6IiJ9." + "eyJpYXQiOjE1MTYyMzkwMjJ9.uE72OfhNzhIFuyHhZyI0eYVPG6QJ7s7A-SVeKsLubCQ"; @@ -537,6 +547,18 @@ class PolicyControllerV3Test { } @Test + @DisplayName("client_id VALID + service_id NULL/EMPTY = client_id with subject as upn") + void testPostPolicyWithTokenUpn() throws IOException { + postPolicyWithTokenAndVerify(bearerTokenUpn, null, "myclient"); + } + + @Test + @DisplayName("client_id VALID + service_id NULL/EMPTY = client_id with subject as preferred_username") + void testPostPolicyWithTokenPrefUser() throws IOException { + postPolicyWithTokenAndVerify(bearerTokenPrefUser, null, "myclient"); + } + + @Test @DisplayName("client_id VALID + service_id VALID = service_id") void testPostPolicyWithTokenAndServiceID() throws IOException { postPolicyWithTokenAndVerify(bearerToken, "notmyclient", "notmyclient"); diff --git a/docs/offeredapis/openapitoolgen/offeredapis/pms-api/index.html b/docs/offeredapis/openapitoolgen/offeredapis/pms-api/index.html index c59e6223..38e9caed 100644 --- a/docs/offeredapis/openapitoolgen/offeredapis/pms-api/index.html +++ b/docs/offeredapis/openapitoolgen/offeredapis/pms-api/index.html @@ -844,313 +844,313 @@ ul.nav-tabs { <script> // Script section to load models into a JS Var var defs = {} - defs["authorization_result"] = {
- "required" : [ "result" ],
- "type" : "object",
- "properties" : {
- "result" : {
- "type" : "boolean",
- "description" : "If true, the access is granted"
- }
- },
- "description" : "Result of authorization",
- "example" : {
- "result" : true
- }
+ defs["authorization_result"] = { + "required" : [ "result" ], + "type" : "object", + "properties" : { + "result" : { + "type" : "boolean", + "description" : "If true, the access is granted" + } + }, + "description" : "Result of authorization", + "example" : { + "result" : true + } }; - defs["error_information"] = {
- "type" : "object",
- "properties" : {
- "detail" : {
- "type" : "string",
- "description" : " A human-readable explanation specific to this occurrence of the problem.",
- "example" : "Policy type not found"
- },
- "title" : {
- "type" : "string",
- "description" : "A specific error name",
- "example" : "Not Found"
- },
- "status" : {
- "type" : "integer",
- "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ",
- "format" : "int32",
- "example" : 404
- }
- },
- "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807"
+ defs["error_information"] = { + "type" : "object", + "properties" : { + "detail" : { + "type" : "string", + "description" : " A human-readable explanation specific to this occurrence of the problem.", + "example" : "Policy type not found" + }, + "title" : { + "type" : "string", + "description" : "A specific error name", + "example" : "Not Found" + }, + "status" : { + "type" : "integer", + "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ", + "format" : "int32", + "example" : 404 + } + }, + "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807" }; - defs["input"] = {
- "required" : [ "access_type", "auth_token", "policy_type_id" ],
- "type" : "object",
- "properties" : {
- "access_type" : {
- "type" : "string",
- "description" : "Access type",
- "enum" : [ "READ", "WRITE", "DELETE" ]
- },
- "auth_token" : {
- "type" : "string",
- "description" : "Authorization token"
- },
- "policy_type_id" : {
- "type" : "string",
- "description" : "Policy type identifier"
- }
- },
- "description" : "input"
+ defs["input"] = { + "required" : [ "access_type", "auth_token", "policy_type_id" ], + "type" : "object", + "properties" : { + "access_type" : { + "type" : "string", + "description" : "Access type", + "enum" : [ "READ", "WRITE", "DELETE" ] + }, + "auth_token" : { + "type" : "string", + "description" : "Authorization token" + }, + "policy_type_id" : { + "type" : "string", + "description" : "Policy type identifier" + } + }, + "description" : "input" }; - defs["Link"] = {
- "type" : "object",
- "properties" : {
- "templated" : {
- "type" : "boolean"
- },
- "href" : {
- "type" : "string"
- }
- }
+ defs["Link"] = { + "type" : "object", + "properties" : { + "templated" : { + "type" : "boolean" + }, + "href" : { + "type" : "string" + } + } }; - defs["policy_authorization"] = {
- "required" : [ "input" ],
- "type" : "object",
- "properties" : {
- "input" : {
- "$ref" : "#/components/schemas/input"
- }
- },
- "description" : "Authorization request for A1 policy requests"
+ defs["policy_authorization"] = { + "required" : [ "input" ], + "type" : "object", + "properties" : { + "input" : { + "$ref" : "#/components/schemas/input" + } + }, + "description" : "Authorization request for A1 policy requests" }; - defs["policy_id_list"] = {
- "type" : "object",
- "properties" : {
- "policy_ids" : {
- "type" : "array",
- "description" : "Policy identities",
- "items" : {
- "type" : "string",
- "description" : "Policy identities"
- }
- }
- },
- "description" : "A list of policy identities",
- "example" : {
- "policy_ids" : [ "policy_ids", "policy_ids" ]
- }
+ defs["policy_id_list"] = { + "type" : "object", + "properties" : { + "policy_ids" : { + "type" : "array", + "description" : "Policy identities", + "items" : { + "type" : "string", + "description" : "Policy identities" + } + } + }, + "description" : "A list of policy identities", + "example" : { + "policy_ids" : [ "policy_ids", "policy_ids" ] + } }; - defs["policy_info"] = {
- "required" : [ "policy_data", "policy_id", "policytype_id", "ric_id" ],
- "type" : "object",
- "properties" : {
- "ric_id" : {
- "type" : "string",
- "description" : "identity of the target Near-RT RIC"
- },
- "policy_id" : {
- "type" : "string",
- "description" : "identity of the policy"
- },
- "transient" : {
- "type" : "boolean",
- "description" : "if true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.",
- "nullable" : false,
- "example" : false,
- "default" : false
- },
- "service_id" : {
- "type" : "string",
- "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.",
- "default" : ""
- },
- "policy_data" : {
- "type" : "object",
- "description" : "the configuration of the policy"
- },
- "status_notification_uri" : {
- "type" : "string",
- "description" : "Callback URI for policy status updates"
- },
- "policytype_id" : {
- "type" : "string",
- "description" : "identity of the policy type"
- }
- },
- "description" : "Information for one A1-P Policy"
+ defs["policy_info"] = { + "required" : [ "policy_data", "policy_id", "policytype_id", "ric_id" ], + "type" : "object", + "properties" : { + "ric_id" : { + "type" : "string", + "description" : "identity of the target Near-RT RIC" + }, + "policy_id" : { + "type" : "string", + "description" : "identity of the policy" + }, + "transient" : { + "type" : "boolean", + "description" : "if true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.", + "nullable" : false, + "example" : false, + "default" : false + }, + "service_id" : { + "type" : "string", + "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", + "default" : "" + }, + "policy_data" : { + "type" : "object", + "description" : "the configuration of the policy" + }, + "status_notification_uri" : { + "type" : "string", + "description" : "Callback URI for policy status updates" + }, + "policytype_id" : { + "type" : "string", + "description" : "identity of the policy type" + } + }, + "description" : "Information for one A1-P Policy" }; - defs["policy_info_list"] = {
- "type" : "object",
- "properties" : {
- "policies" : {
- "type" : "array",
- "description" : "List of policy information",
- "items" : {
- "$ref" : "#/components/schemas/policy_info"
- }
- }
- },
- "description" : "List of policy information"
+ defs["policy_info_list"] = { + "type" : "object", + "properties" : { + "policies" : { + "type" : "array", + "description" : "List of policy information", + "items" : { + "$ref" : "#/components/schemas/policy_info" + } + } + }, + "description" : "List of policy information" }; - defs["policy_status_info"] = {
- "type" : "object",
- "properties" : {
- "last_modified" : {
- "type" : "string",
- "description" : "timestamp, last modification time"
- },
- "status" : {
- "type" : "object",
- "description" : "the Policy status"
- }
- },
- "description" : "Status for one A1-P Policy"
+ defs["policy_status_info"] = { + "type" : "object", + "properties" : { + "last_modified" : { + "type" : "string", + "description" : "timestamp, last modification time" + }, + "status" : { + "type" : "object", + "description" : "the Policy status" + } + }, + "description" : "Status for one A1-P Policy" }; - defs["policy_type_definition"] = {
- "type" : "object",
- "properties" : {
- "policy_schema" : {
- "type" : "object",
- "description" : "Policy type json schema. The schema is a json object following http://json-schema.org/draft-07/schema"
- }
- },
- "description" : "Contains policy type schema definition"
+ defs["policy_type_definition"] = { + "type" : "object", + "properties" : { + "policy_schema" : { + "type" : "object", + "description" : "Policy type json schema. The schema is a json object following http://json-schema.org/draft-07/schema" + } + }, + "description" : "Contains policy type schema definition" }; - defs["policy_type_id_list"] = {
- "type" : "object",
- "properties" : {
- "policytype_ids" : {
- "type" : "array",
- "description" : "Policy type identities",
- "items" : {
- "type" : "string",
- "description" : "Policy type identities"
- }
- }
- },
- "description" : "Information about policy types"
+ defs["policy_type_id_list"] = { + "type" : "object", + "properties" : { + "policytype_ids" : { + "type" : "array", + "description" : "Policy type identities", + "items" : { + "type" : "string", + "description" : "Policy type identities" + } + } + }, + "description" : "Information about policy types" }; - defs["ric_info"] = {
- "type" : "object",
- "properties" : {
- "ric_id" : {
- "type" : "string",
- "description" : "identity of the Near-RT RIC"
- },
- "managed_element_ids" : {
- "type" : "array",
- "description" : "O1 identities for managed entities",
- "items" : {
- "type" : "string",
- "description" : "O1 identities for managed entities"
- }
- },
- "state" : {
- "type" : "string",
- "description" : "Represents the states for a Near-RT RIC",
- "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ]
- },
- "policytype_ids" : {
- "type" : "array",
- "description" : "supported policy types",
- "items" : {
- "type" : "string",
- "description" : "supported policy types"
- }
- }
- },
- "description" : "Information for a Near-RT RIC"
+ defs["ric_info"] = { + "type" : "object", + "properties" : { + "ric_id" : { + "type" : "string", + "description" : "identity of the Near-RT RIC" + }, + "managed_element_ids" : { + "type" : "array", + "description" : "O1 identities for managed entities", + "items" : { + "type" : "string", + "description" : "O1 identities for managed entities" + } + }, + "state" : { + "type" : "string", + "description" : "Represents the states for a Near-RT RIC", + "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ] + }, + "policytype_ids" : { + "type" : "array", + "description" : "supported policy types", + "items" : { + "type" : "string", + "description" : "supported policy types" + } + } + }, + "description" : "Information for a Near-RT RIC" }; - defs["ric_info_list"] = {
- "type" : "object",
- "properties" : {
- "rics" : {
- "type" : "array",
- "description" : "List of Near-RT RIC information",
- "items" : {
- "$ref" : "#/components/schemas/ric_info"
- }
- }
- },
- "description" : "List of Near-RT RIC information"
+ defs["ric_info_list"] = { + "type" : "object", + "properties" : { + "rics" : { + "type" : "array", + "description" : "List of Near-RT RIC information", + "items" : { + "$ref" : "#/components/schemas/ric_info" + } + } + }, + "description" : "List of Near-RT RIC information" }; - defs["service_callback_info_v2"] = {
- "required" : [ "event_type", "ric_id" ],
- "type" : "object",
- "properties" : {
- "ric_id" : {
- "type" : "string",
- "description" : "identity of a Near-RT RIC"
- },
- "event_type" : {
- "type" : "string",
- "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management",
- "enum" : [ "AVAILABLE" ]
- }
- },
- "description" : "Information transferred as in Service callbacks (callback_url)"
+ defs["service_callback_info_v2"] = { + "required" : [ "event_type", "ric_id" ], + "type" : "object", + "properties" : { + "ric_id" : { + "type" : "string", + "description" : "identity of a Near-RT RIC" + }, + "event_type" : { + "type" : "string", + "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management", + "enum" : [ "AVAILABLE" ] + } + }, + "description" : "Information transferred as in Service callbacks (callback_url)" }; - defs["service_registration_info"] = {
- "required" : [ "service_id" ],
- "type" : "object",
- "properties" : {
- "callback_url" : {
- "type" : "string",
- "description" : "callback for notifying of Near-RT RIC state changes"
- },
- "service_id" : {
- "type" : "string",
- "description" : "identity of the service"
- },
- "keep_alive_interval_seconds" : {
- "type" : "integer",
- "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.",
- "format" : "int64"
- }
- },
- "description" : "Information for one service"
+ defs["service_registration_info"] = { + "required" : [ "service_id" ], + "type" : "object", + "properties" : { + "callback_url" : { + "type" : "string", + "description" : "callback for notifying of Near-RT RIC state changes" + }, + "service_id" : { + "type" : "string", + "description" : "identity of the service" + }, + "keep_alive_interval_seconds" : { + "type" : "integer", + "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.", + "format" : "int64" + } + }, + "description" : "Information for one service" }; - defs["service_status"] = {
- "type" : "object",
- "properties" : {
- "callback_url" : {
- "type" : "string",
- "description" : "callback for notifying of RIC synchronization"
- },
- "service_id" : {
- "type" : "string",
- "description" : "identity of the service"
- },
- "keep_alive_interval_seconds" : {
- "type" : "integer",
- "description" : "policy keep alive timeout",
- "format" : "int64"
- },
- "time_since_last_activity_seconds" : {
- "type" : "integer",
- "description" : "time since last invocation by the service",
- "format" : "int64"
- }
- }
+ defs["service_status"] = { + "type" : "object", + "properties" : { + "callback_url" : { + "type" : "string", + "description" : "callback for notifying of RIC synchronization" + }, + "service_id" : { + "type" : "string", + "description" : "identity of the service" + }, + "keep_alive_interval_seconds" : { + "type" : "integer", + "description" : "policy keep alive timeout", + "format" : "int64" + }, + "time_since_last_activity_seconds" : { + "type" : "integer", + "description" : "time since last invocation by the service", + "format" : "int64" + } + } }; - defs["service_status_list"] = {
- "type" : "object",
- "properties" : {
- "service_list" : {
- "type" : "array",
- "description" : "List of service information",
- "items" : {
- "$ref" : "#/components/schemas/service_status"
- }
- }
- }
+ defs["service_status_list"] = { + "type" : "object", + "properties" : { + "service_list" : { + "type" : "array", + "description" : "List of service information", + "items" : { + "$ref" : "#/components/schemas/service_status" + } + } + } }; - defs["status_info"] = {
- "type" : "object",
- "properties" : {
- "status" : {
- "type" : "string",
- "description" : "status text"
- }
- }
+ defs["status_info"] = { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "description" : "status text" + } + } }; @@ -1575,15 +1575,15 @@ pub fn main() { <div id="responses-A1PolicyManagement-deletePolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy deleted",
- "content" : {
- "*/*" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy deleted", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1651,20 +1651,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-deletePolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "Requested resource is in a locked state."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "Requested resource is in a locked state." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2019,20 +2019,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_info"
- },
- "examples" : {
- "policy_info" : {
- "$ref" : "#/components/examples/policy_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_info" + }, + "examples" : { + "policy_info" : { + "$ref" : "#/components/examples/policy_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2095,13 +2095,13 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2554,20 +2554,20 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getPolicyIds-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy identities",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_id_list"
- },
- "examples" : {
- "policy_id_list" : {
- "$ref" : "#/components/examples/policy_id_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy identities", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_id_list" + }, + "examples" : { + "policy_id_list" : { + "$ref" : "#/components/examples/policy_id_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2630,13 +2630,13 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getPolicyIds-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3089,20 +3089,20 @@ Select policies of a given type name (type identity has the format <typename_ <div id="responses-A1PolicyManagement-getPolicyInstances-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Returns A1 Policies which matches the criteria",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_info_list"
- },
- "examples" : {
- "policy_info_list" : {
- "$ref" : "#/components/examples/policy_info_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Returns A1 Policies which matches the criteria", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_info_list" + }, + "examples" : { + "policy_info_list" : { + "$ref" : "#/components/examples/policy_info_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3170,15 +3170,15 @@ Select policies of a given type name (type identity has the format <typename_ <div id="responses-A1PolicyManagement-getPolicyInstances-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found - Near-RT RIC, policy type or service not found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found - Near-RT RIC, policy type or service not found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3533,20 +3533,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy status",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_status_info"
- },
- "examples" : {
- "policy_status_info" : {
- "$ref" : "#/components/examples/policy_status_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy status", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_status_info" + }, + "examples" : { + "policy_status_info" : { + "$ref" : "#/components/examples/policy_status_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3609,13 +3609,13 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyStatus-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3970,20 +3970,20 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - schema of the given policy type",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_type_definition"
- },
- "examples" : {
- "policy_type_definition" : {
- "$ref" : "#/components/examples/policy_type_definition"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - schema of the given policy type", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_type_definition" + }, + "examples" : { + "policy_type_definition" : { + "$ref" : "#/components/examples/policy_type_definition" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4046,13 +4046,13 @@ pub fn main() { <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4471,20 +4471,20 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy Type IDs Found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_type_id_list"
- },
- "examples" : {
- "policy_type_id_list" : {
- "$ref" : "#/components/examples/policy_type_id_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy Type IDs Found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_type_id_list" + }, + "examples" : { + "policy_type_id_list" : { + "$ref" : "#/components/examples/policy_type_id_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4547,13 +4547,13 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4860,15 +4860,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_info"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_info" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -4931,15 +4931,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy updated",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy updated", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5007,15 +5007,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Created - Policy created",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Created - Policy created", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5083,20 +5083,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "Requested resource is in a locked state."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "Requested resource is in a locked state." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5409,15 +5409,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/policy_authorization"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/policy_authorization" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -5480,15 +5480,15 @@ $(document).ready(function() { <div id="responses-AuthorizationAPI-performAccessControl-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/authorization_result"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/authorization_result" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5556,20 +5556,20 @@ $(document).ready(function() { <div id="responses-AuthorizationAPI-performAccessControl-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 403,
- "title" : "Forbidden",
- "detail" : "Your role does not allow to perform this action. Contact System Administrator to change your access rights."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 403, + "title" : "Forbidden", + "detail" : "Your role does not allow to perform this action. Contact System Administrator to change your access rights." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5889,15 +5889,15 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Configuration",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "string"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Configuration", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5960,13 +5960,13 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6273,15 +6273,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "object"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "type" : "object" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -6344,15 +6344,15 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Configuration updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Configuration updated", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6420,20 +6420,20 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 400,
- "title" : "Bad Request",
- "detail" : "The provided request is not valid."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 400, + "title" : "Bad Request", + "detail" : "The provided request is not valid." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6753,20 +6753,20 @@ pub fn main() { <div id="responses-HealthCheck-getStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK- Service is living Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/status_info"
- },
- "examples" : {
- "status_info" : {
- "$ref" : "#/components/examples/status_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK- Service is living Ok", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/status_info" + }, + "examples" : { + "status_info" : { + "$ref" : "#/components/examples/status_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7083,15 +7083,15 @@ pub fn main() { <div id="responses-HealthCheck-getStatusV1-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service is living",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "string"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service is living", + "content" : { + "*/*" : { + "schema" : { + "type" : "string" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7485,20 +7485,20 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Near-RT RIC is found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ric_info"
- },
- "examples" : {
- "ric_info" : {
- "$ref" : "#/components/examples/ric_info"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Near-RT RIC is found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ric_info" + }, + "examples" : { + "ric_info" : { + "$ref" : "#/components/examples/ric_info" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7561,13 +7561,13 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7927,20 +7927,20 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ric_info_list"
- },
- "examples" : {
- "ric_info_list" : {
- "$ref" : "#/components/examples/ric_info_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ric_info_list" + }, + "examples" : { + "ric_info_list" : { + "$ref" : "#/components/examples/ric_info_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8003,13 +8003,13 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8367,15 +8367,15 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "No Content - Service unregistered",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "No Content - Service unregistered", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8438,13 +8438,13 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8804,20 +8804,20 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/service_status_list"
- },
- "examples" : {
- "service_status_list" : {
- "$ref" : "#/components/examples/service_status_list"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/service_status_list" + }, + "examples" : { + "service_status_list" : { + "$ref" : "#/components/examples/service_status_list" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8880,13 +8880,13 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9244,15 +9244,15 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service supervision timer refreshed, OK",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service supervision timer refreshed, OK", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9315,13 +9315,13 @@ pub fn main() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "example" : [ ]
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "example" : [ ] + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9631,15 +9631,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/service_registration_info"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/service_registration_info" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -9702,15 +9702,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service updated", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9778,15 +9778,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Created - Service created",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Created - Service created", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9854,20 +9854,20 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/error_information"
- },
- "example" : {
- "status" : 400,
- "title" : "Bad Request",
- "detail" : "The provided request is not valid."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/error_information" + }, + "example" : { + "status" : 400, + "title" : "Bad Request", + "detail" : "The provided request is not valid." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { diff --git a/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html b/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html index 4ce5ef15..5213a0a3 100644 --- a/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html +++ b/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/custom/index.html @@ -844,382 +844,382 @@ ul.nav-tabs { <script> // Script section to load models into a JS Var var defs = {} - defs["AuthorizationResult"] = {
- "required" : [ "result" ],
- "type" : "object",
- "properties" : {
- "result" : {
- "type" : "boolean",
- "description" : "If true, the access is granted"
- }
- },
- "description" : "Result of authorization",
- "example" : {
- "result" : true
- }
-}; - defs["ErrorInformation"] = {
- "type" : "object",
- "properties" : {
- "detail" : {
- "type" : "string",
- "description" : " A human-readable explanation specific to this occurrence of the problem.",
- "example" : "Policy type not found"
- },
- "title" : {
- "type" : "string",
- "description" : "A specific error name",
- "example" : "Not Found"
- },
- "status" : {
- "type" : "integer",
- "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ",
- "format" : "int32",
- "example" : 404
- }
- },
- "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807"
-}; - defs["input"] = {
- "required" : [ "accessType", "authToken", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "accessType" : {
- "type" : "string",
- "description" : "Access type",
- "enum" : [ "READ", "WRITE", "DELETE" ]
- },
- "authToken" : {
- "type" : "string",
- "description" : "Authorization token"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Policy type identifier"
- }
- },
- "description" : "input"
-}; - defs["Link"] = {
- "type" : "object",
- "properties" : {
- "templated" : {
- "type" : "boolean"
- },
- "href" : {
- "type" : "string"
- }
- }
-}; - defs["PolicyAuthorization"] = {
- "required" : [ "input" ],
- "type" : "object",
- "properties" : {
- "input" : {
- "$ref" : "#/components/schemas/input"
- }
- },
- "description" : "Authorization request for A1 policy requests"
-}; - defs["PolicyInformation"] = {
- "required" : [ "nearRtRicId", "policyId" ],
- "type" : "object",
- "properties" : {
- "policyId" : {
- "type" : "string",
- "description" : "Identity of the policy"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC"
-}; - defs["PolicyObjectInformation"] = {
- "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "nearRtRicId" : {
- "type" : "string",
- "description" : "Identity of the target Near-RT RIC",
- "example" : "Near-RT-Ric-ID"
- },
- "transient" : {
- "type" : "boolean",
- "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.",
- "nullable" : false,
- "default" : false
- },
- "policyId" : {
- "type" : "string",
- "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.",
- "example" : "POLICY-ID"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.",
- "example" : "rApp ID",
- "default" : ""
- },
- "policyObject" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type",
- "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
- }
- },
- "description" : "Information related to the creation of the policy"
-}; - defs["PolicyStatusInfo"] = {
- "type" : "object",
- "properties" : {
- "lastModified" : {
- "type" : "string",
- "description" : "timestamp, last modification time"
- },
- "status" : {
- "type" : "object",
- "description" : "the Policy status"
- }
- },
- "description" : "Status for one A1-P Policy"
-}; - defs["PolicyTypeInformation"] = {
- "required" : [ "nearRtRicId", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type",
- "example" : {
- "policyTypeId" : "STD_QOS2_0.1.0",
- "nearRtRicId" : "ricsim_g3_2"
- }
-}; - defs["PolicyTypeObject"] = {
- "required" : [ "policySchema" ],
- "type" : "object",
- "properties" : {
- "policySchema" : {
- "$ref" : "#/components/schemas/PolicySchema"
- },
- "statusSchema" : {
- "$ref" : "#/components/schemas/StatusSchema"
- }
- },
- "description" : "policy type object as defined in A1TD",
- "example" : {
- "policySchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0_2_0",
- "description" : "STD QOS policy type",
- "type" : "object",
- "properties" : {
- "scope" : {
- "type" : "object",
- "properties" : {
- "ueId" : {
- "type" : "string"
- },
- "qosId" : {
- "type" : "string"
- }
- },
- "additionalProperties" : false,
- "required" : [ "ueId", "qosId" ]
- },
- "qosObjectives" : {
- "type" : "object",
- "properties" : {
- "priorityLevel" : {
- "type" : "number"
- }
- },
- "additionalProperties" : false,
- "required" : [ "priorityLevel" ]
- }
- }
- },
- "statusSchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0.2.0",
- "description" : "STD QOS policy type status",
- "type" : "object",
- "properties" : {
- "enforceStatus" : {
- "type" : "string"
- },
- "enforceReason" : {
- "type" : "string"
- },
- "additionalProperties" : false,
- "required" : [ "enforceStatus" ]
- }
- }
- }
-}; - defs["ProblemDetails"] = {
- "type" : "object",
- "properties" : {
- "type" : {
- "type" : "string",
- "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type"
- },
- "title" : {
- "type" : "string",
- "description" : "human-readable summary of the problem type"
- },
- "status" : {
- "type" : "number",
- "description" : "the HTTP status code"
- },
- "detail" : {
- "type" : "string",
- "description" : "human-readable explanation "
- },
- "instance" : {
- "type" : "string",
- "description" : "URI reference that identifies the specific occurrence of the problem"
- }
- },
- "description" : "A problem detail to carry details in an HTTP response according to RFC 7807"
-}; - defs["RicInfo"] = {
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of the Near-RT RIC"
- },
- "managedElementIds" : {
- "type" : "array",
- "description" : "O1 identities for managed entities",
- "items" : {
- "type" : "string",
- "description" : "O1 identities for managed entities"
- }
- },
- "state" : {
- "type" : "string",
- "description" : "Represents the states for a Near-RT RIC",
- "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ]
- },
- "policyTypeIds" : {
- "type" : "array",
- "description" : "supported policy types",
- "items" : {
- "type" : "string",
- "description" : "supported policy types"
- }
- }
- },
- "description" : "Information for a Near-RT RIC"
-}; - defs["RicInfoList"] = {
- "type" : "object",
- "properties" : {
- "rics" : {
- "type" : "array",
- "description" : "List of Near-RT RIC information",
- "items" : {
- "$ref" : "#/components/schemas/RicInfo"
- }
- }
- },
- "description" : "List of Near-RT RIC information"
-}; - defs["ServiceCallbackInfo"] = {
- "required" : [ "eventType", "ricId" ],
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of a Near-RT RIC"
- },
- "eventType" : {
- "type" : "string",
- "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management",
- "enum" : [ "AVAILABLE" ]
- }
- },
- "description" : "Information transferred as in Service callbacks (callback_url)"
-}; - defs["ServiceRegistrationInfo"] = {
- "required" : [ "serviceId" ],
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of Near-RT RIC state changes"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.",
- "format" : "int64"
- }
- },
- "description" : "Information for one service"
-}; - defs["ServiceStatus"] = {
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of RIC synchronization"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "policy keep alive timeout",
- "format" : "int64"
- },
- "timeSinceLastActivitySeconds" : {
- "type" : "integer",
- "description" : "time since last invocation by the service",
- "format" : "int64"
- }
- }
-}; - defs["ServiceStatusList"] = {
- "type" : "object",
- "properties" : {
- "serviceList" : {
- "type" : "array",
- "description" : "List of service information",
- "items" : {
- "$ref" : "#/components/schemas/ServiceStatus"
- }
- }
- }
-}; - defs["StatusInfo"] = {
- "type" : "object",
- "properties" : {
- "status" : {
- "type" : "string",
- "description" : "status text"
- }
- }
-}; - - defs["NearRtRicId"] = {
- "type" : "string",
- "description" : "Identity of the policy"
+ defs["AuthorizationResult"] = { + "required" : [ "result" ], + "type" : "object", + "properties" : { + "result" : { + "type" : "boolean", + "description" : "If true, the access is granted" + } + }, + "description" : "Result of authorization", + "example" : { + "result" : true + } +}; + defs["ErrorInformation"] = { + "type" : "object", + "properties" : { + "detail" : { + "type" : "string", + "description" : " A human-readable explanation specific to this occurrence of the problem.", + "example" : "Policy type not found" + }, + "title" : { + "type" : "string", + "description" : "A specific error name", + "example" : "Not Found" + }, + "status" : { + "type" : "integer", + "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ", + "format" : "int32", + "example" : 404 + } + }, + "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807" +}; + defs["input"] = { + "required" : [ "accessType", "authToken", "policyTypeId" ], + "type" : "object", + "properties" : { + "accessType" : { + "type" : "string", + "description" : "Access type", + "enum" : [ "READ", "WRITE", "DELETE" ] + }, + "authToken" : { + "type" : "string", + "description" : "Authorization token" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Policy type identifier" + } + }, + "description" : "input" +}; + defs["Link"] = { + "type" : "object", + "properties" : { + "templated" : { + "type" : "boolean" + }, + "href" : { + "type" : "string" + } + } +}; + defs["PolicyAuthorization"] = { + "required" : [ "input" ], + "type" : "object", + "properties" : { + "input" : { + "$ref" : "#/components/schemas/input" + } + }, + "description" : "Authorization request for A1 policy requests" +}; + defs["PolicyInformation"] = { + "required" : [ "nearRtRicId", "policyId" ], + "type" : "object", + "properties" : { + "policyId" : { + "type" : "string", + "description" : "Identity of the policy" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC" +}; + defs["PolicyObjectInformation"] = { + "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ], + "type" : "object", + "properties" : { + "nearRtRicId" : { + "type" : "string", + "description" : "Identity of the target Near-RT RIC", + "example" : "Near-RT-Ric-ID" + }, + "transient" : { + "type" : "boolean", + "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.", + "nullable" : false, + "default" : false + }, + "policyId" : { + "type" : "string", + "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.", + "example" : "POLICY-ID" + }, + "serviceId" : { + "type" : "string", + "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", + "example" : "rApp ID", + "default" : "" + }, + "policyObject" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type", + "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)" + } + }, + "description" : "Information related to the creation of the policy" +}; + defs["PolicyStatusInfo"] = { + "type" : "object", + "properties" : { + "lastModified" : { + "type" : "string", + "description" : "timestamp, last modification time" + }, + "status" : { + "type" : "object", + "description" : "the Policy status" + } + }, + "description" : "Status for one A1-P Policy" +}; + defs["PolicyTypeInformation"] = { + "required" : [ "nearRtRicId", "policyTypeId" ], + "type" : "object", + "properties" : { + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type", + "example" : { + "policyTypeId" : "STD_QOS2_0.1.0", + "nearRtRicId" : "ricsim_g3_2" + } +}; + defs["PolicyTypeObject"] = { + "required" : [ "policySchema" ], + "type" : "object", + "properties" : { + "policySchema" : { + "$ref" : "#/components/schemas/PolicySchema" + }, + "statusSchema" : { + "$ref" : "#/components/schemas/StatusSchema" + } + }, + "description" : "policy type object as defined in A1TD", + "example" : { + "policySchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0_2_0", + "description" : "STD QOS policy type", + "type" : "object", + "properties" : { + "scope" : { + "type" : "object", + "properties" : { + "ueId" : { + "type" : "string" + }, + "qosId" : { + "type" : "string" + } + }, + "additionalProperties" : false, + "required" : [ "ueId", "qosId" ] + }, + "qosObjectives" : { + "type" : "object", + "properties" : { + "priorityLevel" : { + "type" : "number" + } + }, + "additionalProperties" : false, + "required" : [ "priorityLevel" ] + } + } + }, + "statusSchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0.2.0", + "description" : "STD QOS policy type status", + "type" : "object", + "properties" : { + "enforceStatus" : { + "type" : "string" + }, + "enforceReason" : { + "type" : "string" + }, + "additionalProperties" : false, + "required" : [ "enforceStatus" ] + } + } + } +}; + defs["ProblemDetails"] = { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type" + }, + "title" : { + "type" : "string", + "description" : "human-readable summary of the problem type" + }, + "status" : { + "type" : "number", + "description" : "the HTTP status code" + }, + "detail" : { + "type" : "string", + "description" : "human-readable explanation " + }, + "instance" : { + "type" : "string", + "description" : "URI reference that identifies the specific occurrence of the problem" + } + }, + "description" : "A problem detail to carry details in an HTTP response according to RFC 7807" +}; + defs["RicInfo"] = { + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of the Near-RT RIC" + }, + "managedElementIds" : { + "type" : "array", + "description" : "O1 identities for managed entities", + "items" : { + "type" : "string", + "description" : "O1 identities for managed entities" + } + }, + "state" : { + "type" : "string", + "description" : "Represents the states for a Near-RT RIC", + "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ] + }, + "policyTypeIds" : { + "type" : "array", + "description" : "supported policy types", + "items" : { + "type" : "string", + "description" : "supported policy types" + } + } + }, + "description" : "Information for a Near-RT RIC" +}; + defs["RicInfoList"] = { + "type" : "object", + "properties" : { + "rics" : { + "type" : "array", + "description" : "List of Near-RT RIC information", + "items" : { + "$ref" : "#/components/schemas/RicInfo" + } + } + }, + "description" : "List of Near-RT RIC information" +}; + defs["ServiceCallbackInfo"] = { + "required" : [ "eventType", "ricId" ], + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of a Near-RT RIC" + }, + "eventType" : { + "type" : "string", + "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management", + "enum" : [ "AVAILABLE" ] + } + }, + "description" : "Information transferred as in Service callbacks (callback_url)" +}; + defs["ServiceRegistrationInfo"] = { + "required" : [ "serviceId" ], + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of Near-RT RIC state changes" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.", + "format" : "int64" + } + }, + "description" : "Information for one service" +}; + defs["ServiceStatus"] = { + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of RIC synchronization" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "policy keep alive timeout", + "format" : "int64" + }, + "timeSinceLastActivitySeconds" : { + "type" : "integer", + "description" : "time since last invocation by the service", + "format" : "int64" + } + } +}; + defs["ServiceStatusList"] = { + "type" : "object", + "properties" : { + "serviceList" : { + "type" : "array", + "description" : "List of service information", + "items" : { + "$ref" : "#/components/schemas/ServiceStatus" + } + } + } +}; + defs["StatusInfo"] = { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "description" : "status text" + } + } +}; + + defs["NearRtRicId"] = { + "type" : "string", + "description" : "Identity of the policy" }; var errs = {}; @@ -1326,13 +1326,13 @@ ul.nav-tabs { -H "Accept: application/json,application/problem+json" \ -H "Content-Type: application/json" \ "https://example.com/a1-policy-management/v1/policies" \ - -d '{
- "policyId" : "POLICY-ID",
- "nearRtRicId" : "Near-RT-Ric-ID",
- "transient" : false,
- "policyObject" : "{}",
- "serviceId" : "rApp ID",
- "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
+ -d '{ + "policyId" : "POLICY-ID", + "nearRtRicId" : "Near-RT-Ric-ID", + "transient" : false, + "policyObject" : "{}", + "serviceId" : "rApp ID", + "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)" }' </code></pre> </div> @@ -1561,15 +1561,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -1635,26 +1635,26 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Success case 201 created",
- "headers" : {
- "Location" : {
- "description" : "Contains the URI of the newly created resource",
- "required" : true,
- "style" : "simple",
- "explode" : false,
- "schema" : {
- "type" : "string"
- }
- }
- },
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Success case 201 created", + "headers" : { + "Location" : { + "description" : "Contains the URI of the newly created resource", + "required" : true, + "style" : "simple", + "explode" : false, + "schema" : { + "type" : "string" + } + } + }, + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1738,15 +1738,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1814,15 +1814,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1890,15 +1890,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1966,15 +1966,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2042,15 +2042,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2118,15 +2118,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2194,15 +2194,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-409" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Conflict",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Conflict", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2270,15 +2270,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2346,15 +2346,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2422,20 +2422,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2503,15 +2503,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2579,15 +2579,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2655,15 +2655,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2731,15 +2731,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3123,8 +3123,8 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "The A1 policy was deleted"
+ var schemaWrapper = { + "description" : "The A1 policy was deleted" }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3192,15 +3192,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3268,15 +3268,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3344,15 +3344,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3420,15 +3420,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3496,15 +3496,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3572,15 +3572,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3648,20 +3648,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3729,15 +3729,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3805,15 +3805,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3881,15 +3881,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3957,15 +3957,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4456,18 +4456,18 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy identities",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy identities", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4535,15 +4535,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4611,15 +4611,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4687,15 +4687,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4763,15 +4763,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4839,15 +4839,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4915,15 +4915,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4991,15 +4991,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5067,15 +5067,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5143,15 +5143,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5546,20 +5546,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5627,15 +5627,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5703,15 +5703,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5779,15 +5779,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5855,15 +5855,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5931,15 +5931,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6007,15 +6007,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6083,15 +6083,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6159,15 +6159,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6235,15 +6235,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6638,15 +6638,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyStatusObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyStatusObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6714,15 +6714,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6790,15 +6790,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6866,15 +6866,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6942,15 +6942,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7018,15 +7018,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7094,15 +7094,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7170,15 +7170,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7246,15 +7246,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7322,15 +7322,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7725,20 +7725,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - schema of the given policy type",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyTypeObject"
- },
- "examples" : {
- "PolicyTypeObject" : {
- "$ref" : "#/components/examples/PolicyTypeObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - schema of the given policy type", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyTypeObject" + }, + "examples" : { + "PolicyTypeObject" : { + "$ref" : "#/components/examples/PolicyTypeObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7806,15 +7806,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7882,15 +7882,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7958,15 +7958,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8034,15 +8034,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8110,15 +8110,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8186,15 +8186,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8262,15 +8262,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8338,15 +8338,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8414,15 +8414,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8879,23 +8879,23 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy Type IDs found Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyTypeInformation"
- }
- },
- "examples" : {
- "PolicyTypeInformation" : {
- "$ref" : "#/components/examples/PolicyTypeInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy Type IDs found Ok", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyTypeInformation" + } + }, + "examples" : { + "PolicyTypeInformation" : { + "$ref" : "#/components/examples/PolicyTypeInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8963,15 +8963,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9039,15 +9039,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9115,15 +9115,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9191,15 +9191,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9267,15 +9267,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9343,15 +9343,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9419,15 +9419,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9495,15 +9495,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9571,15 +9571,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9924,20 +9924,20 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -10000,15 +10000,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy updated",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy updated", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10076,15 +10076,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10152,15 +10152,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10228,15 +10228,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10304,15 +10304,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10380,15 +10380,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10456,15 +10456,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-411" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Length Required",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Length Required", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10532,15 +10532,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10608,15 +10608,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10684,20 +10684,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10765,15 +10765,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10841,15 +10841,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10917,15 +10917,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10993,15 +10993,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { diff --git a/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html b/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html index 37f3436f..da6b47d6 100644 --- a/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html +++ b/docs/offeredapis/openapitoolgen/offeredapis/pms-api/v3/index.html @@ -844,382 +844,382 @@ ul.nav-tabs { <script> // Script section to load models into a JS Var var defs = {} - defs["AuthorizationResult"] = {
- "required" : [ "result" ],
- "type" : "object",
- "properties" : {
- "result" : {
- "type" : "boolean",
- "description" : "If true, the access is granted"
- }
- },
- "description" : "Result of authorization",
- "example" : {
- "result" : true
- }
+ defs["AuthorizationResult"] = { + "required" : [ "result" ], + "type" : "object", + "properties" : { + "result" : { + "type" : "boolean", + "description" : "If true, the access is granted" + } + }, + "description" : "Result of authorization", + "example" : { + "result" : true + } }; - defs["ErrorInformation"] = {
- "type" : "object",
- "properties" : {
- "detail" : {
- "type" : "string",
- "description" : " A human-readable explanation specific to this occurrence of the problem.",
- "example" : "Policy type not found"
- },
- "title" : {
- "type" : "string",
- "description" : "A specific error name",
- "example" : "Not Found"
- },
- "status" : {
- "type" : "integer",
- "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ",
- "format" : "int32",
- "example" : 404
- }
- },
- "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807"
+ defs["ErrorInformation"] = { + "type" : "object", + "properties" : { + "detail" : { + "type" : "string", + "description" : " A human-readable explanation specific to this occurrence of the problem.", + "example" : "Policy type not found" + }, + "title" : { + "type" : "string", + "description" : "A specific error name", + "example" : "Not Found" + }, + "status" : { + "type" : "integer", + "description" : "The HTTP status code generated by the origin server for this occurrence of the problem. ", + "format" : "int32", + "example" : 404 + } + }, + "description" : "Problem as defined in https://tools.ietf.org/html/rfc7807" }; - defs["input"] = {
- "required" : [ "accessType", "authToken", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "accessType" : {
- "type" : "string",
- "description" : "Access type",
- "enum" : [ "READ", "WRITE", "DELETE" ]
- },
- "authToken" : {
- "type" : "string",
- "description" : "Authorization token"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Policy type identifier"
- }
- },
- "description" : "input"
+ defs["input"] = { + "required" : [ "accessType", "authToken", "policyTypeId" ], + "type" : "object", + "properties" : { + "accessType" : { + "type" : "string", + "description" : "Access type", + "enum" : [ "READ", "WRITE", "DELETE" ] + }, + "authToken" : { + "type" : "string", + "description" : "Authorization token" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Policy type identifier" + } + }, + "description" : "input" }; - defs["Link"] = {
- "type" : "object",
- "properties" : {
- "templated" : {
- "type" : "boolean"
- },
- "href" : {
- "type" : "string"
- }
- }
+ defs["Link"] = { + "type" : "object", + "properties" : { + "templated" : { + "type" : "boolean" + }, + "href" : { + "type" : "string" + } + } }; - defs["PolicyAuthorization"] = {
- "required" : [ "input" ],
- "type" : "object",
- "properties" : {
- "input" : {
- "$ref" : "#/components/schemas/input"
- }
- },
- "description" : "Authorization request for A1 policy requests"
+ defs["PolicyAuthorization"] = { + "required" : [ "input" ], + "type" : "object", + "properties" : { + "input" : { + "$ref" : "#/components/schemas/input" + } + }, + "description" : "Authorization request for A1 policy requests" }; - defs["PolicyInformation"] = {
- "required" : [ "nearRtRicId", "policyId" ],
- "type" : "object",
- "properties" : {
- "policyId" : {
- "type" : "string",
- "description" : "Identity of the policy"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC"
+ defs["PolicyInformation"] = { + "required" : [ "nearRtRicId", "policyId" ], + "type" : "object", + "properties" : { + "policyId" : { + "type" : "string", + "description" : "Identity of the policy" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Near-RT RIC identifiers where A1 policies exist and for each Near-RT RIC identifier the policy identifiers of those policies that exist in that Near-RT RIC" }; - defs["PolicyObjectInformation"] = {
- "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "nearRtRicId" : {
- "type" : "string",
- "description" : "Identity of the target Near-RT RIC",
- "example" : "Near-RT-Ric-ID"
- },
- "transient" : {
- "type" : "boolean",
- "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.",
- "nullable" : false,
- "default" : false
- },
- "policyId" : {
- "type" : "string",
- "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.",
- "example" : "POLICY-ID"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.",
- "example" : "rApp ID",
- "default" : ""
- },
- "policyObject" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type",
- "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
- }
- },
- "description" : "Information related to the creation of the policy"
+ defs["PolicyObjectInformation"] = { + "required" : [ "nearRtRicId", "policyObject", "policyTypeId" ], + "type" : "object", + "properties" : { + "nearRtRicId" : { + "type" : "string", + "description" : "Identity of the target Near-RT RIC", + "example" : "Near-RT-Ric-ID" + }, + "transient" : { + "type" : "boolean", + "description" : "If true, the policy is deleted at RIC restart. If false, its value is maintained by this service until explicitly deleted. Default false.", + "nullable" : false, + "default" : false + }, + "policyId" : { + "type" : "string", + "description" : "The identity of the Policy. If this value is present, it must be unique; otherwise, a random UUID is generated.", + "example" : "POLICY-ID" + }, + "serviceId" : { + "type" : "string", + "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", + "example" : "rApp ID", + "default" : "" + }, + "policyObject" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type", + "example" : "ORAN_QOS_1.0.0(typeName_SemVersion)" + } + }, + "description" : "Information related to the creation of the policy" }; - defs["PolicyStatusInfo"] = {
- "type" : "object",
- "properties" : {
- "lastModified" : {
- "type" : "string",
- "description" : "timestamp, last modification time"
- },
- "status" : {
- "type" : "object",
- "description" : "the Policy status"
- }
- },
- "description" : "Status for one A1-P Policy"
+ defs["PolicyStatusInfo"] = { + "type" : "object", + "properties" : { + "lastModified" : { + "type" : "string", + "description" : "timestamp, last modification time" + }, + "status" : { + "type" : "object", + "description" : "the Policy status" + } + }, + "description" : "Status for one A1-P Policy" }; - defs["PolicyTypeInformation"] = {
- "required" : [ "nearRtRicId", "policyTypeId" ],
- "type" : "object",
- "properties" : {
- "policyTypeId" : {
- "type" : "string",
- "description" : "Identity of the policy type"
- },
- "nearRtRicId" : {
- "$ref" : "#/components/schemas/NearRtRicId"
- }
- },
- "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type",
- "example" : {
- "policyTypeId" : "STD_QOS2_0.1.0",
- "nearRtRicId" : "ricsim_g3_2"
- }
+ defs["PolicyTypeInformation"] = { + "required" : [ "nearRtRicId", "policyTypeId" ], + "type" : "object", + "properties" : { + "policyTypeId" : { + "type" : "string", + "description" : "Identity of the policy type" + }, + "nearRtRicId" : { + "$ref" : "#/components/schemas/NearRtRicId" + } + }, + "description" : "Available policy types and for each policy type identifier the Near-RT RIC identifiers of those Near-RT RICs that support the related A1 policy type", + "example" : { + "policyTypeId" : "STD_QOS2_0.1.0", + "nearRtRicId" : "ricsim_g3_2" + } }; - defs["PolicyTypeObject"] = {
- "required" : [ "policySchema" ],
- "type" : "object",
- "properties" : {
- "policySchema" : {
- "$ref" : "#/components/schemas/PolicySchema"
- },
- "statusSchema" : {
- "$ref" : "#/components/schemas/StatusSchema"
- }
- },
- "description" : "policy type object as defined in A1TD",
- "example" : {
- "policySchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0_2_0",
- "description" : "STD QOS policy type",
- "type" : "object",
- "properties" : {
- "scope" : {
- "type" : "object",
- "properties" : {
- "ueId" : {
- "type" : "string"
- },
- "qosId" : {
- "type" : "string"
- }
- },
- "additionalProperties" : false,
- "required" : [ "ueId", "qosId" ]
- },
- "qosObjectives" : {
- "type" : "object",
- "properties" : {
- "priorityLevel" : {
- "type" : "number"
- }
- },
- "additionalProperties" : false,
- "required" : [ "priorityLevel" ]
- }
- }
- },
- "statusSchema" : {
- "$schema" : "http://json-schema.org/draft-07/schema#",
- "title" : "STD_QOS_0.2.0",
- "description" : "STD QOS policy type status",
- "type" : "object",
- "properties" : {
- "enforceStatus" : {
- "type" : "string"
- },
- "enforceReason" : {
- "type" : "string"
- },
- "additionalProperties" : false,
- "required" : [ "enforceStatus" ]
- }
- }
- }
+ defs["PolicyTypeObject"] = { + "required" : [ "policySchema" ], + "type" : "object", + "properties" : { + "policySchema" : { + "$ref" : "#/components/schemas/PolicySchema" + }, + "statusSchema" : { + "$ref" : "#/components/schemas/StatusSchema" + } + }, + "description" : "policy type object as defined in A1TD", + "example" : { + "policySchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0_2_0", + "description" : "STD QOS policy type", + "type" : "object", + "properties" : { + "scope" : { + "type" : "object", + "properties" : { + "ueId" : { + "type" : "string" + }, + "qosId" : { + "type" : "string" + } + }, + "additionalProperties" : false, + "required" : [ "ueId", "qosId" ] + }, + "qosObjectives" : { + "type" : "object", + "properties" : { + "priorityLevel" : { + "type" : "number" + } + }, + "additionalProperties" : false, + "required" : [ "priorityLevel" ] + } + } + }, + "statusSchema" : { + "$schema" : "http://json-schema.org/draft-07/schema#", + "title" : "STD_QOS_0.2.0", + "description" : "STD QOS policy type status", + "type" : "object", + "properties" : { + "enforceStatus" : { + "type" : "string" + }, + "enforceReason" : { + "type" : "string" + }, + "additionalProperties" : false, + "required" : [ "enforceStatus" ] + } + } + } }; - defs["ProblemDetails"] = {
- "type" : "object",
- "properties" : {
- "type" : {
- "type" : "string",
- "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type"
- },
- "title" : {
- "type" : "string",
- "description" : "human-readable summary of the problem type"
- },
- "status" : {
- "type" : "number",
- "description" : "the HTTP status code"
- },
- "detail" : {
- "type" : "string",
- "description" : "human-readable explanation "
- },
- "instance" : {
- "type" : "string",
- "description" : "URI reference that identifies the specific occurrence of the problem"
- }
- },
- "description" : "A problem detail to carry details in an HTTP response according to RFC 7807"
+ defs["ProblemDetails"] = { + "type" : "object", + "properties" : { + "type" : { + "type" : "string", + "description" : "a URI reference according to IETF RFC 3986 that identifies the problem type" + }, + "title" : { + "type" : "string", + "description" : "human-readable summary of the problem type" + }, + "status" : { + "type" : "number", + "description" : "the HTTP status code" + }, + "detail" : { + "type" : "string", + "description" : "human-readable explanation " + }, + "instance" : { + "type" : "string", + "description" : "URI reference that identifies the specific occurrence of the problem" + } + }, + "description" : "A problem detail to carry details in an HTTP response according to RFC 7807" }; - defs["RicInfo"] = {
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of the Near-RT RIC"
- },
- "managedElementIds" : {
- "type" : "array",
- "description" : "O1 identities for managed entities",
- "items" : {
- "type" : "string",
- "description" : "O1 identities for managed entities"
- }
- },
- "state" : {
- "type" : "string",
- "description" : "Represents the states for a Near-RT RIC",
- "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ]
- },
- "policyTypeIds" : {
- "type" : "array",
- "description" : "supported policy types",
- "items" : {
- "type" : "string",
- "description" : "supported policy types"
- }
- }
- },
- "description" : "Information for a Near-RT RIC"
+ defs["RicInfo"] = { + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of the Near-RT RIC" + }, + "managedElementIds" : { + "type" : "array", + "description" : "O1 identities for managed entities", + "items" : { + "type" : "string", + "description" : "O1 identities for managed entities" + } + }, + "state" : { + "type" : "string", + "description" : "Represents the states for a Near-RT RIC", + "enum" : [ "UNAVAILABLE", "AVAILABLE", "SYNCHRONIZING", "CONSISTENCY_CHECK" ] + }, + "policyTypeIds" : { + "type" : "array", + "description" : "supported policy types", + "items" : { + "type" : "string", + "description" : "supported policy types" + } + } + }, + "description" : "Information for a Near-RT RIC" }; - defs["RicInfoList"] = {
- "type" : "object",
- "properties" : {
- "rics" : {
- "type" : "array",
- "description" : "List of Near-RT RIC information",
- "items" : {
- "$ref" : "#/components/schemas/RicInfo"
- }
- }
- },
- "description" : "List of Near-RT RIC information"
+ defs["RicInfoList"] = { + "type" : "object", + "properties" : { + "rics" : { + "type" : "array", + "description" : "List of Near-RT RIC information", + "items" : { + "$ref" : "#/components/schemas/RicInfo" + } + } + }, + "description" : "List of Near-RT RIC information" }; - defs["ServiceCallbackInfo"] = {
- "required" : [ "eventType", "ricId" ],
- "type" : "object",
- "properties" : {
- "ricId" : {
- "type" : "string",
- "description" : "Identity of a Near-RT RIC"
- },
- "eventType" : {
- "type" : "string",
- "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management",
- "enum" : [ "AVAILABLE" ]
- }
- },
- "description" : "Information transferred as in Service callbacks (callback_url)"
+ defs["ServiceCallbackInfo"] = { + "required" : [ "eventType", "ricId" ], + "type" : "object", + "properties" : { + "ricId" : { + "type" : "string", + "description" : "Identity of a Near-RT RIC" + }, + "eventType" : { + "type" : "string", + "description" : "values:\nAVAILABLE: the Near-RT RIC has become available for A1 Policy management", + "enum" : [ "AVAILABLE" ] + } + }, + "description" : "Information transferred as in Service callbacks (callback_url)" }; - defs["ServiceRegistrationInfo"] = {
- "required" : [ "serviceId" ],
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of Near-RT RIC state changes"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.",
- "format" : "int64"
- }
- },
- "description" : "Information for one service"
+ defs["ServiceRegistrationInfo"] = { + "required" : [ "serviceId" ], + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of Near-RT RIC state changes" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "keep alive interval for the service. This is used to enable optional heartbeat supervision of the service. If set (> 0) the registered service should regularly invoke a 'keepalive' REST call. When a service fails to invoke this 'keepalive' call within the configured time, the service is considered unavailable. An unavailable service will be automatically deregistered and its policies will be deleted. Value 0 means timeout supervision is disabled.", + "format" : "int64" + } + }, + "description" : "Information for one service" }; - defs["ServiceStatus"] = {
- "type" : "object",
- "properties" : {
- "callbackUrl" : {
- "type" : "string",
- "description" : "callback for notifying of RIC synchronization"
- },
- "serviceId" : {
- "type" : "string",
- "description" : "Identity of the service"
- },
- "keepAliveIntervalSeconds" : {
- "type" : "integer",
- "description" : "policy keep alive timeout",
- "format" : "int64"
- },
- "timeSinceLastActivitySeconds" : {
- "type" : "integer",
- "description" : "time since last invocation by the service",
- "format" : "int64"
- }
- }
+ defs["ServiceStatus"] = { + "type" : "object", + "properties" : { + "callbackUrl" : { + "type" : "string", + "description" : "callback for notifying of RIC synchronization" + }, + "serviceId" : { + "type" : "string", + "description" : "Identity of the service" + }, + "keepAliveIntervalSeconds" : { + "type" : "integer", + "description" : "policy keep alive timeout", + "format" : "int64" + }, + "timeSinceLastActivitySeconds" : { + "type" : "integer", + "description" : "time since last invocation by the service", + "format" : "int64" + } + } }; - defs["ServiceStatusList"] = {
- "type" : "object",
- "properties" : {
- "serviceList" : {
- "type" : "array",
- "description" : "List of service information",
- "items" : {
- "$ref" : "#/components/schemas/ServiceStatus"
- }
- }
- }
+ defs["ServiceStatusList"] = { + "type" : "object", + "properties" : { + "serviceList" : { + "type" : "array", + "description" : "List of service information", + "items" : { + "$ref" : "#/components/schemas/ServiceStatus" + } + } + } }; - defs["StatusInfo"] = {
- "type" : "object",
- "properties" : {
- "status" : {
- "type" : "string",
- "description" : "status text"
- }
- }
+ defs["StatusInfo"] = { + "type" : "object", + "properties" : { + "status" : { + "type" : "string", + "description" : "status text" + } + } }; - defs["NearRtRicId"] = {
- "type" : "string",
- "description" : "Identity of the policy"
+ defs["NearRtRicId"] = { + "type" : "string", + "description" : "Identity of the policy" }; var errs = {}; @@ -1357,13 +1357,13 @@ ul.nav-tabs { -H "Accept: application/json,application/problem+json" \ -H "Content-Type: application/json" \ "https://example.com/a1-policy-management/v1/policies" \ - -d '{
- "policyId" : "POLICY-ID",
- "nearRtRicId" : "Near-RT-Ric-ID",
- "transient" : false,
- "policyObject" : "{}",
- "serviceId" : "rApp ID",
- "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)"
+ -d '{ + "policyId" : "POLICY-ID", + "nearRtRicId" : "Near-RT-Ric-ID", + "transient" : false, + "policyObject" : "{}", + "serviceId" : "rApp ID", + "policyTypeId" : "ORAN_QOS_1.0.0(typeName_SemVersion)" }' </code></pre> </div> @@ -1592,15 +1592,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -1666,26 +1666,26 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Success case 201 created",
- "headers" : {
- "Location" : {
- "description" : "Contains the URI of the newly created resource",
- "required" : true,
- "style" : "simple",
- "explode" : false,
- "schema" : {
- "type" : "string"
- }
- }
- },
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObjectInformation"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Success case 201 created", + "headers" : { + "Location" : { + "description" : "Contains the URI of the newly created resource", + "required" : true, + "style" : "simple", + "explode" : false, + "schema" : { + "type" : "string" + } + } + }, + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObjectInformation" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1769,15 +1769,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1845,15 +1845,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1921,15 +1921,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -1997,15 +1997,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2073,15 +2073,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2149,15 +2149,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2225,15 +2225,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-409" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Conflict",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Conflict", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2301,15 +2301,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2377,15 +2377,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2453,20 +2453,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2534,15 +2534,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2610,15 +2610,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2686,15 +2686,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -2762,15 +2762,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-createPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3154,8 +3154,8 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "The A1 policy was deleted"
+ var schemaWrapper = { + "description" : "The A1 policy was deleted" }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3223,15 +3223,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3299,15 +3299,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3375,15 +3375,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3451,15 +3451,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3527,15 +3527,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-405" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Method Not Allowed",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Method Not Allowed", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3603,15 +3603,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3679,20 +3679,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3760,15 +3760,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3836,15 +3836,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3912,15 +3912,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -3988,15 +3988,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-deletePolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4487,18 +4487,18 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy identities",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy identities", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4566,15 +4566,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4642,15 +4642,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4718,15 +4718,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4794,15 +4794,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4870,15 +4870,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -4946,15 +4946,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5022,15 +5022,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5098,15 +5098,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5174,15 +5174,15 @@ Select policies of types with the given type name (type identity has the format <div id="responses-A1PolicyManagement-getAllPolicies-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5577,20 +5577,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy found",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy found", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5658,15 +5658,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5734,15 +5734,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5810,15 +5810,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5886,15 +5886,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -5962,15 +5962,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6038,15 +6038,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6114,15 +6114,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6190,15 +6190,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6266,15 +6266,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6669,15 +6669,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyStatusObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyStatusObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6745,15 +6745,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6821,15 +6821,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6897,15 +6897,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -6973,15 +6973,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7049,15 +7049,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7125,15 +7125,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7201,15 +7201,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7277,15 +7277,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7353,15 +7353,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyStatus-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7756,20 +7756,20 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - schema of the given policy type",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyTypeObject"
- },
- "examples" : {
- "PolicyTypeObject" : {
- "$ref" : "#/components/examples/PolicyTypeObject"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - schema of the given policy type", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyTypeObject" + }, + "examples" : { + "PolicyTypeObject" : { + "$ref" : "#/components/examples/PolicyTypeObject" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7837,15 +7837,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7913,15 +7913,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -7989,15 +7989,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8065,15 +8065,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8141,15 +8141,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8217,15 +8217,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8293,15 +8293,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8369,15 +8369,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8445,15 +8445,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-A1PolicyManagement-getPolicyTypeDefinition-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8910,23 +8910,23 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy Type IDs found Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/components/schemas/PolicyTypeInformation"
- }
- },
- "examples" : {
- "PolicyTypeInformation" : {
- "$ref" : "#/components/examples/PolicyTypeInformation"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy Type IDs found Ok", + "content" : { + "application/json" : { + "schema" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/PolicyTypeInformation" + } + }, + "examples" : { + "PolicyTypeInformation" : { + "$ref" : "#/components/examples/PolicyTypeInformation" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -8994,15 +8994,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9070,15 +9070,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9146,15 +9146,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9222,15 +9222,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9298,15 +9298,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9374,15 +9374,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9450,15 +9450,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9526,15 +9526,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9602,15 +9602,15 @@ Select types that are compatible with the given version. This parameter is only <div id="responses-A1PolicyManagement-getPolicyTypes-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -9955,20 +9955,20 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- },
- "examples" : {
- "policyObject" : {
- "$ref" : "#/components/examples/PolicyObject"
- }
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + }, + "examples" : { + "policyObject" : { + "$ref" : "#/components/examples/PolicyObject" + } + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -10031,15 +10031,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Policy updated",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/PolicyObject"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Policy updated", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/PolicyObject" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10107,15 +10107,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10183,15 +10183,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-401" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unauthorized",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unauthorized", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10259,15 +10259,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-403" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Forbidden",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Forbidden", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10335,15 +10335,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10411,15 +10411,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-406" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Acceptable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Acceptable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10487,15 +10487,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-411" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Length Required",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Length Required", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10563,15 +10563,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-413" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Payload Too Large",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Payload Too Large", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10639,15 +10639,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-415" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Unsupported Media Type",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Unsupported Media Type", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10715,20 +10715,20 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-423" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Locked - HTTP Status code which can be used when the state is Locked",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ErrorInformation"
- },
- "example" : {
- "status" : 423,
- "title" : "Locked",
- "detail" : "State is Locked in the provided request."
- }
- }
- }
+ var schemaWrapper = { + "description" : "Locked - HTTP Status code which can be used when the state is Locked", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ErrorInformation" + }, + "example" : { + "status" : 423, + "title" : "Locked", + "detail" : "State is Locked in the provided request." + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10796,15 +10796,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-429" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Too Many Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Too Many Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10872,15 +10872,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-500" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Internal Server Error",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Internal Server Error", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -10948,15 +10948,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-502" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Gateway",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Gateway", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11024,15 +11024,15 @@ $(document).ready(function() { <div id="responses-A1PolicyManagement-putPolicy-schema-503" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Service Unavailable",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Service Unavailable", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11352,15 +11352,15 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Application configuration received",
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "string"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Application configuration received", + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11428,15 +11428,15 @@ pub fn main() { <div id="responses-Configuration-getConfiguration-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11743,15 +11743,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "object"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "type" : "object" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -11814,15 +11814,15 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Configuration updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "$ref" : "#/components/schemas/void"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Configuration updated", + "content" : { + "*/*" : { + "schema" : { + "$ref" : "#/components/schemas/void" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -11890,15 +11890,15 @@ $(document).ready(function() { <div id="responses-Configuration-putConfiguration-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -12218,20 +12218,20 @@ pub fn main() { <div id="responses-HealthCheck-getStatus-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK- Service is living Ok",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/StatusInfo"
- },
- "examples" : {
- "status_info" : {
- "$ref" : "#/components/examples/StatusInfo"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK- Service is living Ok", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/StatusInfo" + }, + "examples" : { + "status_info" : { + "$ref" : "#/components/examples/StatusInfo" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -12663,20 +12663,20 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Near-RT RIC is found OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/RicInfo"
- },
- "examples" : {
- "ric_info" : {
- "$ref" : "#/components/examples/RicInfo"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Near-RT RIC is found OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/RicInfo" + }, + "examples" : { + "ric_info" : { + "$ref" : "#/components/examples/RicInfo" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -12744,15 +12744,15 @@ The identity of a Near-RT RIC to get information for. <div id="responses-NearRTRICRepository-getRic-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13150,20 +13150,20 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/RicInfoList"
- },
- "examples" : {
- "ric_info_list" : {
- "$ref" : "#/components/examples/RicInfoList"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/RicInfoList" + }, + "examples" : { + "ric_info_list" : { + "$ref" : "#/components/examples/RicInfoList" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13231,15 +13231,15 @@ The identity of a policy type. If given, all Near-RT RICs supporting the policy <div id="responses-NearRTRICRepository-getRics-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13637,15 +13637,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-204" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "No Content - Service unregistered",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "No Content - Service unregistered", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -13713,15 +13713,15 @@ Specifies the content type that the client expects to receive in response to the <div id="responses-ServiceRegistryAndSupervision-deleteService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14119,20 +14119,20 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK",
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ServiceStatusList"
- },
- "examples" : {
- "service_status_list" : {
- "$ref" : "#/components/examples/ServiceStatusList"
- }
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK", + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ServiceStatusList" + }, + "examples" : { + "service_status_list" : { + "$ref" : "#/components/examples/ServiceStatusList" + } + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14200,15 +14200,15 @@ The identity of the service <div id="responses-ServiceRegistryAndSupervision-getServices-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14596,15 +14596,15 @@ Specifies the content type that the client expects to receive in response to the <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "type" : "string"
- }
- }
- },
- "required" : false
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "type" : "string" + } + } + }, + "required" : false }; var schema = findNode('schema',schemaWrapper).schema; @@ -14667,15 +14667,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service supervision timer refreshed, OK",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service supervision timer refreshed, OK", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14743,15 +14743,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-keepAliveService-schema-404" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Not Found",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Not Found", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -14830,10 +14830,10 @@ $(document).ready(function() { -H "Accept: */*,application/problem+json" \ -H "Content-Type: application/json" \ "https://example.com/a1-policy-management/v1/services" \ - -d '{
- "keepAliveIntervalSeconds" : 0,
- "callbackUrl" : "callbackUrl",
- "serviceId" : "serviceId"
+ -d '{ + "keepAliveIntervalSeconds" : 0, + "callbackUrl" : "callbackUrl", + "serviceId" : "serviceId" }' </code></pre> </div> @@ -15065,15 +15065,15 @@ pub fn main() { <p class="marked"></p> <script> $(document).ready(function() { - var schemaWrapper = {
- "content" : {
- "application/json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ServiceRegistrationInfo"
- }
- }
- },
- "required" : true
+ var schemaWrapper = { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/ServiceRegistrationInfo" + } + } + }, + "required" : true }; var schema = findNode('schema',schemaWrapper).schema; @@ -15136,15 +15136,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-200" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "OK - Service updated",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "OK - Service updated", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -15212,15 +15212,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-201" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Created - Service created",
- "content" : {
- "*/*" : {
- "schema" : {
- "type" : "object"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Created - Service created", + "content" : { + "*/*" : { + "schema" : { + "type" : "object" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { @@ -15288,15 +15288,15 @@ $(document).ready(function() { <div id="responses-ServiceRegistryAndSupervision-putService-schema-400" class="exampleStyle"> <script> $(document).ready(function() { - var schemaWrapper = {
- "description" : "Bad Request",
- "content" : {
- "application/problem+json" : {
- "schema" : {
- "$ref" : "#/components/schemas/ProblemDetails"
- }
- }
- }
+ var schemaWrapper = { + "description" : "Bad Request", + "content" : { + "application/problem+json" : { + "schema" : { + "$ref" : "#/components/schemas/ProblemDetails" + } + } + } }; var schema = findNode('schema',schemaWrapper).schema; if (!schema) { diff --git a/docs/offeredapis/swagger/custom/a1pms-api-custom-v3.json b/docs/offeredapis/swagger/custom/a1pms-api-custom-v3.json index 0fc875fa..f923650c 100644 --- a/docs/offeredapis/swagger/custom/a1pms-api-custom-v3.json +++ b/docs/offeredapis/swagger/custom/a1pms-api-custom-v3.json @@ -2092,6 +2092,7 @@ "type" : "string" }, "serviceId" : { + "default" : "", "description" : "the identity of the service owning the policy. This can be used to group the policies (it is possible to get all policies associated to a service). Note that the service does not need to be registered.", "example" : "rApp ID", "type" : "string" |