{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiCreateOrUpdateParameter", "title": "ApiCreateOrUpdateParameter", "type": "object", "properties": { "properties": { "type": "object", "properties": { "displayName": { "type": "string", "example": "Petstore API" }, "description": { "type": "string", "example": "A sample API for managing pets." }, "serviceUrl": { "type": "string", "example": "https://petstore.example.com/v1" }, "path": { "type": "string", "example": "petstore" }, "protocols": { "type": "array", "items": { "type": "string" }, "example": [ "https" ] } } } } }