{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "title": "WebOCMicroFrontEndsResponse",
  "description": "WebOCMicroFrontEndsResponse PI_JSON",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "microFrontEnds": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/WebOCMicroFrontEnds"
      }
    }
  },
  "definitions": {
    "WebOCMicroFrontEnds": {
      "type": "object",
      "required": [
        "id",
        "icon",
        "remoteId",
        "componentId",
        "display"
      ],
      "additionalProperties": false,
      "properties": {
        "id": {
          "type": "string",
          "description": "the id of the micro front end"
        },
        "icon": {
          "type": "string",
          "description": "icon of the micro front end"
        },
        "remoteId": {
          "type": "string",
          "description": "Remote id of the micro front end"
        },
        "componentId": {
          "type": "string",
          "description": "Component id of the micro front end"
        },
        "display": {
          "type": "string",
          "description": "Display name where the micro front end will be shown in the WebOC"
        }
      }
    }
  }
}
