This endpoint returns a list of the learning goals based on Bloom taxonomy and that are associated to the learning object provided by the API.

Request

GET https://api.gateway.inokufu.com/learningobject/v3/bloom

Headers

This endpoint does not require any API key authentication in the header.

Query Parameters

This endpoint does not require any query parameter.

Code example

curl "https://api.gateway.inokufu.com/learningobject/v3/bloom"

Response

Response parameters

Parameter

Description

id_bloom

UUID of the Bloom objective. This is the parameter to use in the query parameter of the endpoint /search.

name

Name of the Bloom objectives to be used in the /search endpoint to filter LO with the bloom parameter

description

Short description of this Bloom objectives

Response example

Here is an example of the JSON structured response provided by this endpoint.

[
  {
    "id_bloom": "Découvrir",
    "name": {
      "fr": "Découvrir",
      "en": "Discover"
    },
    "description": {
      "fr": "Ces LO sont les premiers pas vers la découverte d'un métier ou d'une compétence. Vous pourrez en parler, en connaître les bases. Vous aurez toutes les connaissances nécessaires pour décider si c'est pour vous ou non.",
      "en": "These LO are the first step to discover a job or a skill. You'll be able to talk about it, to know the basics. You'll have all the knowledge to decide wether it's for you or not."
    }
  },
  {
    "id_bloom": "Comprendre",
    "name": {
      "fr": "Comprendre",
      "en": "Understand"
    },
    "description": {
      "fr": "Ces LO vous aident à mieux comprendre ce métier ou cette compétence, en détail. Vous approfondirez la théorie. Au final, vous maîtriserez les aspects théoriques.",
      "en": "These LO help you better understand this job or skill, in details. You'll dive deeper in the theory. You'll be able to explain, estimate. At the end, you'll be a master of the theoretical aspects."
    }
  },
  {
    "id_bloom": "Faire",
    "name": {
      "fr": "Faire",
      "en": "Do"
    },
    "description": {
      "fr": "Ces LO vous aident à mettre en pratique ce que vous avez appris. Vous réaliserez, manipulerez, simulerez. Vous appliquez ce que vous avez appris.",
      "en": "These LO help you put into practice what you have learned. You'll make, manipulate, simulate. You are applying what you learn."
    }
  },
  {
    "id_bloom": "Cursus",
    "name": {
      "fr": "Cursus",
      "en": "Degree"
    },
    "description": {
      "fr": "Ces LO vous forment à un métier ou à une compétence spécifique à un niveau professionnel. De la découverte à la compréhension, en passant par la réalisation, vous devenez un professionnel.",
      "en": "These LO train you to a specific job or skill at a professional level. From Discovery, Understanding to Doing, at the end you are a Pro."
    }
  }
]