# Getting Started Onderwijsloket is the central information platform for careers in Dutch education. We publish independent, objective, and current information, and offer free personalised advice. You can reuse our authored content - preferably with attribution - for commercial and non-commercial products. The platform also contains aggregated data from external sources. ::tip{title="New documentation"} We are continually improving these docs. Send [feedback by email](mailto:remi@onderwijsin.nl?subject=Documentation+Feedback) when something is unclear or missing. :: ## Choose what to integrate Use the **Directus API** when you need source data: articles, FAQs, programmes, routes, and their relationships. It is the best place to start for most integrations. Use **Algolia** when you need responsive full-text search, facets, or geo-search. Search is a separate service and requires the appropriate permission. Use **Cloudinary** to deliver public images, videos, audio, and documents. Its URL API gives you transformations, CDN delivery, and caching without another authenticated request. ::u-page-grid :::u-page-card --- to: https://docs.onderwijsloket.com/directus/your-first-request --- #title Directus API #description Retrieve structured Onderwijsloket data. ::: :::u-page-card --- to: https://docs.onderwijsloket.com/search/setting-up-a-client --- #title Search API #description Build search and discovery features with Algolia. ::: :::u-page-card --- to: https://docs.onderwijsloket.com/misc/cloudinary --- #title Cloudinary assets #description Deliver and transform public media. ::: :: ## Build experiences that move people forward Give prospective education professionals clear, trustworthy next steps. Combine the information, discovery, and guidance services that fit your product. ::u-page-grid{.lg:grid-cols-2} :::u-page-card --- icon: i-lucide-search --- #title Answer important questions #description Make secondary-education FAQs easy to find and understand in the moment they matter. ::: :::u-page-card --- icon: i-lucide-library-big --- #title Curate a knowledge hub #description Build a thematic knowledge base with objective articles and filters that make content feel personal. ::: :::u-page-card --- icon: i-lucide-map-pin --- #title Make opportunities discoverable #description Help visitors find teacher-training programmes near Utrecht, or wherever their journey begins. ::: :::u-page-card --- icon: i-lucide-signpost --- #title Guide a career decision #description Match personal characteristics to plausible routes into teaching and connect visitors with a relevant regional education desk. ::: :::u-page-card --- icon: lucide:bot-message-square --- #title Train you AI #description Train your AI assistant on reliable and independent data so your visitors can get accurate and helpful responses. ::: :::u-page-card --- icon: lucide:calendar --- #title Delightful scheduling #description Offer your website visitors instant scheduling with one of our advisors - completely for free ::: :: ## Request API access Request an account and token before you make an authenticated request. Include the applicant’s full name, email address, administrative email address, organisation, and intended use. ::u-button --- icon: i-lucide-key-round target: _blank to: https://onderwijsloket.com/access-request?utm_source=docs&utm_medium=website&utm_campaign=getting-started --- Request an account :: ## Understand access and costs Your token determines which data you may read or modify. Core published content is available to every API user, while some datasets and services require an additional policy. The core API is free under fair-use conditions. Algolia search has a yearly charge based on expected usage, which covers provider costs. Prices, fair-use thresholds, and billing terms may change as those costs evolve. ::u-page-card --- to: https://docs.onderwijsloket.com/misc/permissions --- #title Review permissions #description See every policy, its dataset access, and how to request it. :: ## Explore the available data Onderwijsloket has **more than 80 collections**. Each represents a distinct data type and can be queried through the API; key datasets also have a search index. Start with the data model before building complex queries. It explains collection families, relationships, and field structures. ::u-page-card --- to: https://docs.onderwijsloket.com/data-model/data-model-overview --- #title Explore the data model #description Understand collections and how they fit together. :: ## Start with a small request Once you have a token, send a request for a few articles. Then learn how to authenticate, query relationships, and use the SDK. ::steps ### Authenticate your requests Keep the static token in server-side configuration and send it in the Authorization header. ### Retrieve a small collection Fetch a few articles and request only the fields your interface needs. ### Add the features your product needs Use the data model, advanced examples, search guides, and media guide as you grow the integration. :: ::u-page-card --- to: https://docs.onderwijsloket.com/directus/your-first-request --- #title Make your first request #description Retrieve articles, related data, and filtered results. :: ## Reuse our examples and get help The [code snippets repository](https://github.com/onderwijsin/onderwijsloket-examples){rel=""nofollow""} contains copy-pasteable examples from these docs. If you need integration guidance, [schedule a call](https://meetings.onderwijsin.nl/remi/kennismaking?d=30){rel=""nofollow""}. Our engineers can help you choose a practical implementation path. # Your first request You need an API token before starting. Read [authentication](https://docs.onderwijsloket.com/directus/authentication) first, then keep that token in server-side configuration. ::note{title="Directus"} Directus powers the source API of the Onderwijsloket platform. These docs cover Onderwijsloket-specific behaviour; use the [Directus documentation](https://directus.io/docs/){rel=""nofollow""} for platform-level details. :: ## Retrieve a small set of articles After receiving your API token, you can begin interacting with the Onderwijsloket API. Start by requesting a selection of `articles`: ```bash curl 'https://content.onderwijsloket.com/items/articles?fields=id&fields=title&fields=slug&limit=3&meta=total_count' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' ``` A response might look like this: ::code-collapse ```json { "meta": { "total_count": 83 }, "data": [ { "id": "00f81660-a2e4-48af-b8d7-98ce338de447", "title": "Hoe werkt de leerplicht in Nederland?", "slug": "hoe-werkt-de-leerplicht-in-nederland" }, { "id": "01f90101-9f1c-4241-a7e8-0a1d60d7fa5d", "title": "Wat is het vavo?", "slug": "wat-is-het-vavo" }, { "id": "0dbab3e8-1d2b-489f-a539-1f4cdbec0f05", "title": "Hoe kan ik zij-instromen als leraar in het voortgezet onderwijs?", "slug": "hoe-kan-ik-zij-instromen-als-leraar-in-het-voortgezet-onderwijs" } ] } ``` :: ## Request related fields Next, you may want more detailed information about an article. Using the article ID as a path parameter retrieves the full record and any related fields: ```bash curl 'https://content.onderwijsloket.com/items/articles/01f90101-9f1c-4241-a7e8-0a1d60d7fa5d?fields=id&fields=title&fields=path&fields=summary&fields=faqs.faqs_id.question' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' ``` A key part of this request is the `fields=faqs.faqs_id.question` parameter. This uses dot notation to request relational data: ::field-group :::field{name="faqs" type="relation"} The field containing related FAQ entries. ::: :::field{name="faqs_id" type="junction field"} References each FAQ item. ::: :::field{name="question" type="field"} The property to return from the related FAQ. ::: :: The response looks like this: ```json { "data": { "id": "01f90101-9f1c-4241-a7e8-0a1d60d7fa5d", "title": "Wat is het vavo?", "path": "/kennisbank/artikelen/wat-is-het-vavo", "summary": "Heb je interesse in (werken in) het volwassenenonderwijs? In het voortgezet algemeen volwassenenonderwijs (vavo) kunnen volwassenen een vmbo-tl-, havo- of vwo-diploma of deelcertificaten voor bepaalde schoolvakken halen. In dit artikel lees je voor wie het vavo bedoeld is, waar je het vavo kunt volgen, wat de kosten van deze opleiding zijn en welke kwalificatie je nodig hebt om hier les te mogen geven.", "faqs": [ { "faqs_id": { "question": "Wat is het vavo?" } } ] } } ``` ## Shape the response with query parameters Directus provides extensive query options to shape your responses, including selecting specific fields, filtering and sorting results, paginating large collections, and expanding relational data. Below is an example of filtering articles based on a related topic with the slug `pdg-traject`. In this example, `topics` is the relational field linking an article to its associated topics. ```bash curl 'https://content.onderwijsloket.com/items/articles?limit=3&fields=id%2Ctitle%2Cslug%2Ctopics.topics_id.name&filter={%22topics%22%3A{%22topics_id%22%3A{%22slug%22%3A{%22_eq%22%3A%20%22pdg-traject%22}}}}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' ``` This query returns only articles whose related topic has a slug equal to `pdg-traject`, along with selected fields for clarity. The `filter` parameter uses an object with the following structure: ```json { "topics": { "topics_id": { "slug": { "_eq": "pdg-traject" } } } } ``` Many more query parameters, filter options, and features are available to help tailor your requests. Refer to the Directus documentation for deeper guidance on: - [Query parameters](https://directus.io/docs/guides/connect/query-parameters){rel=""nofollow""} - [Filter rules](https://directus.io/docs/guides/connect/filter-rules){rel=""nofollow""} - [Fetching relational data](https://directus.io/docs/guides/connect/relations){rel=""nofollow""} ## Use the Directus SDK When working with our API, we recommend using the [Directus SDK](https://docs.onderwijsloket.com/directus/directus-sdk). It offers: - Type-safe API interactions - Built-in utilities for authentication and querying - Simplified handling of relational data This significantly reduces boilerplate and improves reliability. ## Check the API reference All available endpoints, parameters, data structures, and example responses are documented in our interactive API reference. Use it as the primary source of truth when building against the Onderwijsloket API. ::u-button --- icon: lucide:code-xml to: https://docs.onderwijsloket.com/api-reference --- API Reference :: ## Learn the data model To work effectively with the API, it helps to understand the structure and relationships within our collections. Reviewing the data model will provide context for how items relate and how to navigate more complex queries. :u-page-card{description="An introduction to our data schema and the structure of our collections." title="Data Model Overview" to="https://docs.onderwijsloket.com/data-model/data-model-overview"} # Authentication When we grant your project API access, you receive a static API token. Use it for every authenticated Directus request. ::warning{title="Keep tokens server-side"} Do not expose a static API token in browser code, a public repository, or a URL that can be logged. Route client requests through your server when the token must stay private. :: ## Send a Bearer token Send your static token in the `Authorization` header. This is the recommended, most reliable, and most secure method. The Directus SDK does this automatically when configured with `staticToken`. ```bash [terminal] curl 'https://content.onderwijsloket.com/items/articles?limit=1' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' ``` ## Understand alternative methods You can update your account with a password and use basic authentication to obtain a temporary access token. That token expires and must be refreshed, so we do not recommend it for ordinary API requests. You can also supply the static token as an `access_token` query parameter. Use this only when headers are impossible: URLs are often stored in browser history, logs, analytics, and proxy records. ## Rotate a static token Rotate a token by updating the `token` property on your own user record. Use at least 32 cryptographically random bytes, encoded as Base64 URL or hexadecimal, to avoid collisions and brute-forceable values. ```bash [terminal] curl --request PATCH 'https://content.onderwijsloket.com/users/me' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \ --header 'Content-Type: application/json' \ --data '{ "token": "my-new-static-token" }' ``` ## Replace a lost token We cannot retrieve an existing token value. Contact us for a replacement; issuing one rotates the lost token. # Directus SDK Use the [Directus SDK](https://www.npmjs.com/package/@directus/sdk){rel=""nofollow""} in TypeScript projects. It provides concise request helpers and mostly type-safe access to a Directus instance. :embedded-video{src="https://www.youtube.com/embed/ouNg6ukKmm8" title="Directus SDK walkthrough"} ## Configure a client To get started with the Directus SDK, install the required dependency: ::code-group ```bash [pnpm] pnpm add @directus/sdk ``` ```bash [npm] npm install @directus/sdk ``` ```bash [yarn] yarn add @directus/sdk ``` ```bash [bun] bun add @directus/sdk ``` :: Then configure your client: ```typescript import { createDirectus, rest, staticToken } from "@directus/sdk"; import type { Schema } from "@my-generated-schema"; const DIRECTUS_BASE_URL = "https://content.onderwijsloket.com"; const DIRECTUS_TOKEN = ""; const directus = createDirectus(DIRECTUS_BASE_URL) .with(staticToken(DIRECTUS_TOKEN)) .with(rest()); ``` To create a type-aware client, you must pass a `Schema` type argument. There is currently no official type package available for the Onderwijsloket API, but you can generate type definitions based on the OpenAPI specification. Refer to the related guide for instructions. :u-page-card{description="How to generate static types based on our data schema." title="Type Definitions" to="https://docs.onderwijsloket.com/data-model/type-definitions"} ## Send requests with SDK commands The SDK exposes various commands that can be used with the client. In most cases, you will primarily use `readItem` and `readItems`. A full list of available commands can be found in [the SDK source code](https://github.com/directus/directus/tree/main/sdk/src/rest/commands){rel=""nofollow""}. ::code-collapse ```typescript /** * Check the Directus SDK source code for all available commands * @link https://github.com/directus/directus/tree/main/sdk/src/rest/commands */ import { readItems } from '@directus/sdk' /** * articles will be typed as: * Pick[] */ const articles = await directus.request( readItems('articles', { filter: { status: { _eq: 'published' }, } fields: ['id', 'title', 'slug'], limit: 5 }) ) ``` :: ## Know the type-inference limits While the SDK provides type safety, it can also introduce some limitations. ### Do not infer non-null fields from filters Filter rules are not reflected in inferred types. For example, if you apply a `{ _nnull: true }` filter to a field, that field may still be typed as `null`. ### Check types for relational fields A larger issue occurs with relational fields not being properly resolved in the inferred types. This may require you to cast the type manually or use type guards. ::code-collapse ```typescript /** * Article type is inferred as: * { * id: string * authors: string[] | { authors_id: string | null | { name: string } }[] * } * * Even though we requested embedded fields, the SDK still resolves * the type as a potential string. */ const article = await directus.request( readItem("articles", "", { fields: [ "id", { authors: [ { authors_id: ["name"] } ] } ] }) ); ``` :: # Advanced usage These examples recreate API calls used on [onderwijsloket.com](http://onderwijsloket.com){rel=""nofollow""}. Adapt the requested fields and filters to your UI; the complete snippets also live in our [code snippets repository](https://github.com/onderwijsin/onderwijsloket-examples/tree/main){rel=""nofollow""}. ## Fetch filtered FAQs Suppose you are building an application that only contains content related to primary and secondary education. You want to create a landing page for the topic **“salary”** and include a relevant FAQ section. You can achieve this by applying the appropriate filters to your API query. In the example below: - We assume there are sector items named **“voortgezet onderwijs”** and **“primair onderwijs”**. - We use the `_icontains` operator to ensure case-insensitive filtering. - We assume there is a topic containing the word **“salaris”**. - We filter FAQs linked to that topic and either of the two sectors. ::code-collapse ```typescript // Get your client const directus = useDirectus(); const data = await directus( readItems("faqs", { fields: ["id", "question", "answer"], filter: { _or: [ { sectors: { sectors_id: { title: { _icontains: "primair onderwijs" } } } }, { sectors: { sectors_id: { title: { _icontains: "voortgezet onderwijs" } } } } ], topics: { topics_id: { name: { _icontains: "salaris" } } } } }) ); ``` :: ::callout{color="primary" icon="i-lucide-lightbulb"} You do not have to use `_icontains` for this query. If you know the IDs of the relevant topics and sectors, you can use `_eq` or `_in` to filter directly by ID instead. :: ## Fetch an article by slug If you want to implement articles from Onderwijsloket in your own knowledge base, you need to fetch and render the relevant data—similar to how we do it internally. In this example, we fetch an article by its `slug` field using `readItems`. We also: - Fetch relational data used by the editor - Inject relational data into the content document - Remove junction tables from the response ### Request the article and its dependencies ::code-collapse ```typescript import type { ArticlesEditorNode, Author, Topic, Sector, Role, Track, Qualification, Document, Source, DirectusFile } from "@your-generated-schema"; import { injectData, editorNodeFields } from "your-content-renderer-helpers"; // Get your Directus client const directus = useDirectus(); // Get the slug from the route const slug = getSlugFromRoute(); const data = await directus( readItems("articles", { filter: { // Filter results based on slug value slug: { _eq: slug } }, fields: [ /** * Top-level article fields */ "title", "id", "slug", "path", "description", "summary", "body", "date_created", "date_updated", "seo", "english", { /** * Relational data used by the editor * @see https://docs.onderwijsloket.com/misc/content-documents */ editor_nodes: editorNodeFields }, /** * Additional relational data */ { authors: [ { authors_id: ["first_name", "name", "image", "job_title"] } ] }, { documents: [ { documents_id: [ "id", "title", "description", { asset: ["id", "filesize", "type"] } ] } ] }, { sources: [ { sources_id: ["id", "title", "description", "url"] } ] }, { topics: [ { topics_id: ["id", "name", "path"] } ] }, { sectors: [ { sectors_id: ["id", "title", "slug"] } ] }, { roles: [ { roles_id: ["id", "name", "path"] } ] }, { tracks: [ { tracks_id: ["id", "name", "path"] } ] }, { qualifications: [ { qualifications_id: ["id", "name", "path"] } ] } ] }) ); // Since slug values are unique, we can assume the first item is the correct article. const item = data[0]; if (!item) { // Handle missing article (e.g. return 404) return handle404(); } ``` :: ### Inject relational data into the content document ```typescript /** * Inject editor nodes into the body content * @see https://docs.onderwijsloket.com/misc/content-documents#injecting-relational-data-into-the-json-document */ const bodyWithInjectedData = injectData(item.editor_nodes as ArticlesEditorNode[], item.body); ``` For more details on content documents and injecting relational data, refer to the related guide. :u-page-card{description="Learn how to work with our rich JSON documents and the relational nodes." title="Content Documents" to="https://docs.onderwijsloket.com/misc/content-documents"} ### Remove junction tables from relationships The helper function below extracts nested relational data from the Directus response and maps it back to a clean structure without junction tables. ::code-collapse ```typescript function getNestedRelationships(item: unknown, config: { key: string }): T[] { const relation = (item as Record)[config.key] as unknown[]; if (!Array.isArray(relation)) { return []; } return relation.map((rel) => { const idKey = `${config.key}_id`; const id = (rel as Record)[idKey]; if (typeof id === "object" && id !== null && "id" in id) { return { ...(rel as object), ...id } as T; } return rel as T; }); } ``` :: You can then construct the processed article object: ::code-collapse ```typescript const processedItem = { ...itemWithRelationalData, authors: getNestedRelationships>(item, { key: "authors" }), topics: getNestedRelationships>(item, { key: "topics" }), sectors: getNestedRelationships>(item, { key: "sectors" }), roles: getNestedRelationships>(item, { key: "roles" }), tracks: getNestedRelationships>(item, { key: "tracks" }), qualifications: getNestedRelationships>(item, { key: "qualifications" }), documents: getNestedRelationships }>(item, { key: "documents" }), sources: getNestedRelationships>(item, { key: "sources" }) }; ``` :: At this point, `processedItem` contains: - Injected editor content - Clean relational data without junction tables - A structure ready for rendering in your frontend application ## Fetch an institution and its programmes Suppose you want to create a details page for a specific educational institution. For example, consider **Vrije Universiteit Amsterdam**. There are several ways to retrieve this item depending on what information you already have: - **ID known** → Use `readItem` - **Slug known** → Use a filter on `slug` - **Only the title known** → Use `_icontains` (e.g. `{ "title": { "_icontains": "vrije universiteit" } }`) The last option is less reliable because titles can change or vary in formatting. Therefore, if the **ID is known**, it is the most straightforward and robust approach. In this example, we will fetch the institution using its ID: ```plaintext c23d4070-1c5c-5ec8-a182-8a2e1c313ca9 ``` ### Select only the fields you render To retrieve all relevant information about the institution and its programs, we need to include **nested relational data**. In this example, we fetch data **two levels deep**: 1. Programs related to the institution 2. Qualifications related to each program ::callout{color="info" icon="i-lucide-network"} Fetching relational data requires traversing junction tables when dealing with many-to-many relationships. :: The field selection below includes: - Top-level institution fields - The `description` rich text document - Related `programs` - Related `qualifications` within each program ::code-collapse ```typescript import type { EducationalInstitution, Schema } from "@schema"; import type { QueryFields } from "@directus/sdk"; /** * Field selection for the query. */ const fields: QueryFields = [ /** * Top-level fields: * Include any fields from the educational_institutions collection that you need in your application */ "id", "title", "slug", "path", "date_created", "date_updated", /** * The tiptap document of Educational Institutions do not contain relational nodes like in Articles. * That means fetching the `description` field will return all relevant data. */ "description", /** * Embed related programs using Directus' nested read functionality. * Programs <> Educational Institutions is a many-to-many relationship, so we need to traverse the * junction table (educational_institutions_programs) to get the related programs. */ { programs: [ { programs_id: [ /** * Select fields to include from the related programs. If needed, you can even * embed deeper relationships using the same syntax. */ "id", "title", "slug", "level", { /** * Embed qualifications related to the program. This is also a many-to-many relationship, * so we need to traverse the junction table (programs_qualifications) to get the related qualifications. */ qualifications: [ { qualifications_id: ["id", "name", "description"] } ] } ] } ] } ]; ``` :: ### Construct the request Since we know the institution ID, we can use the `readItem` request. In addition to the field selection, we include a `deep`\*\* parameter\*\* to control how related data is fetched. ::callout{color="warning" icon="i-lucide-triangle-alert"} By default, Directus limits relational queries to **100 items**. Setting `_limit: -1` disables pagination and ensures **all related programs** are returned. :: The example below also demonstrates filtering related programs so that **only master-level programs** are returned. ::code-collapse ```typescript const ID = "c23d4070-1c5c-5ec8-a182-8a2e1c313ca9"; import { directus } from "./client"; const item = await directus.request( readItem("educational_institutions", ID, { fields, /** * We want to make sure we fetch ALL related programs, so we need to set a limit via the `deep` parameter. * By default the query limit is set to 100 (which is sufficient to fetch all programs, but for the sake of * this demo, we will increase it anyway). */ deep: { programs: { _limit: -1, // Set to -1 to disable pagination and fetch all related items /** * You can optionally set other 'deep parameters' such as _sort or _filter to further customize the query for related items. * For more info @see https://directus.io/docs/guides/connect/query-parameters#deep */ _filter: { // For example, only fetch master level programs // Here we need to traverse the junction table as well programs_id: { level: { _eq: "master" } } } } } }) ); ``` :: ### Flatten junction records The response contains two junction layers: - `eductional_institutions_programs` - `programs_qualification` Since junction records do not contain meaningful data themselves, it is often helpful to **flatten them** before using the data in your application. ```typescript import { getNestedRelationships } from "./get-nested-relationship"; /** * Flatten junction tables two levels deep (programs and qualifications) */ const processedItem = { ...item, programs: getNestedRelationships>(item, { key: "programs" }).map((program) => ({ ...program, qualifications: getNestedRelationships>(program, { key: "qualifications" }) })) }; ``` This transformation removes unnecessary junction layers, allowing your application code to work directly with: - `programs` - `qualifications` # Error handling The Onderwijsloket API uses the [standard Directus error format and error codes](https://directus.io/docs/guides/connect/errors){rel=""nofollow""}. Use the response code and error payload together to identify the failed part of a request. ## Interpret common error codes The table below lists the error codes you may encounter when interacting with the API. | | | | | ------------------------ | ------ | ------------------------------------------------------------------- | | Error Code | Status | Description | | `FAILED_VALIDATION` | 400 | Validation for the request or item failed. | | `FORBIDDEN` | 403 | You are not allowed to perform the requested action. | | `INVALID_TOKEN` | 403 | The provided token is invalid. | | `TOKEN_EXPIRED` | 401 | The provided token is valid but has expired. | | `INVALID_CREDENTIALS` | 401 | Username/password or access token is incorrect. | | `INVALID_IP` | 401 | The request originates from an IP address not allow-listed. | | `INVALID_OTP` | 401 | The provided one-time password is incorrect. | | `INVALID_PAYLOAD` | 400 | The request body contains invalid data or structure. | | `INVALID_QUERY` | 400 | One or more query parameters are invalid or not supported. | | `UNSUPPORTED_MEDIA_TYPE` | 415 | The payload format or `Content-Type` header is unsupported. | | `REQUESTS_EXCEEDED` | 429 | The client has exceeded the allowed request rate. | | `ROUTE_NOT_FOUND` | 404 | The requested endpoint does not exist. | | `SERVICE_UNAVAILABLE` | 503 | An external service required to process the request is unavailable. | | `UNPROCESSABLE_CONTENT` | 422 | The request attempts an illegal or restricted operation. | | `INTERNAL_SERVER_ERROR` | 500 | Something went wrong on our end. | To avoid leaking information about which items exist, all actions on non-existing items return a `FORBIDDEN` error rather than `NOT_FOUND`. ## Read the error response All errors follow the standard Directus error response format: ```json { "errors": [ { "message": "Invalid query parameter.", "extensions": { "code": "INVALID_QUERY" } } ] } ``` Each error object includes a human-readable message and a machine-readable code found under `extensions.code`. ## Troubleshoot a failed request ### Check authentication Ensure that your API token is valid, not expired, and included in the `Authorization` header. ### Validate query parameters Errors such as `INVALID_QUERY` or `INVALID_PAYLOAD` often result from incorrect field names, unsupported operators, or malformed request bodies. ### Inspect permissions A `FORBIDDEN` response typically indicates insufficient permissions. Verify that the authenticated role has the required access to the collection or item. ### Monitor rate limits Although individual users are not subject to per-user rate limits, the platform enforces global rate limits to protect system stability. If you receive a `REQUESTS_EXCEEDED` error, lower your request frequency or implement retry logic with exponential backoff. ### Confirm endpoint availability A `ROUTE_NOT_FOUND` error indicates a typo in the URL or the use of an endpoint not available in the current API version. ## Contact support with useful context If you encounter errors in the `5xx` range or errors that persist after verifying your token, permissions, query structure, and rate limits, contact the Onderwijsloket technical team. Include the full error response (excluding sensitive tokens) and the timestamp of the request to help us trace the issue in our monitoring tools. # Setting up a search client Algolia provides fast, relevant search across most Onderwijsloket content collections. Request the Algolia token first; it is separate from Directus access. Directus includes basic search, but Algolia gives better relevance and performance. Use it for product search experiences rather than Directus search methods. The Algolia instance is not part of our API and is not proxied. Both frontend and backend applications call Algolia’s endpoints directly, minimizing latency and enabling near-instant response times (10–30 ms). ::tip{title="Copy-paste examples"} The [code snippets repository](https://github.com/onderwijsin/onderwijsloket-examples){rel=""nofollow""} contains production-ready examples used throughout this guide. :: ## Create a client Algolia provides SDKs for [all major languages](https://www.algolia.com/doc/libraries/sdk){rel=""nofollow""}. The example below uses the JavaScript SDK. Refer to the Algolia documentation for examples in other languages. Install the Algolia client and its fetch requester and cache dependencies: ::code-group ```bash [pnpm] pnpm add algoliasearch @algolia/requester-fetch @algolia/client-common ``` ```bash [npm] npm install algoliasearch @algolia/requester-fetch @algolia/client-common ``` ```bash [yarn] yarn add algoliasearch @algolia/requester-fetch @algolia/client-common ``` ```bash [bun] bun add algoliasearch @algolia/requester-fetch @algolia/client-common ``` :: ::code-collapse ```typescript import { liteClient } from "algoliasearch/lite"; import { createFetchRequester } from "@algolia/requester-fetch"; import { createNullCache, createBrowserLocalStorageCache, createMemoryCache, createFallbackableCache } from "@algolia/client-common"; const ALGOLIA_APP_ID = "WSV9PQ4NXW"; const ALGOLIA_TOKEN = "your_algolia_token_here"; function getUserToken(): string { // Implement your logic to retrieve the user token, e.g., from cookies or local storage return "anonymous"; } /** * Initialize the Algolia Lite client. * * For all customization options, see: * @see https://www.algolia.com/doc/libraries/sdk/customize */ const client = liteClient(ALGOLIA_APP_ID, ALGOLIA_TOKEN, { baseHeaders: { /** * OPTIONAL * Set an anonymous user token for tracking purposes. * @see https://www.algolia.com/doc/guides/sending-events/concepts/usertoken */ "X-Algolia-UserToken": getUserToken() }, /** * OPTIONAL * Change the default request implementation. * This might be usefull in scenarios where the Algolia client is not * detecting the environment (node/browser) correctly. * * @see https://www.algolia.com/doc/libraries/sdk/v1/customize#change-http-request-methods */ requester: createFetchRequester(), /** * OPTIONAL * Configure caching strategies for requests and responses. * @see https://www.algolia.com/doc/libraries/sdk/caching */ requestsCache: createFallbackableCache({ caches: [ createBrowserLocalStorageCache({ key: "algolia-requests-cache" }), createMemoryCache(), createNullCache() // null cache is a no-op ] }), responsesCache: createFallbackableCache({ caches: [ createBrowserLocalStorageCache({ key: "algolia-responses-cache" }), createMemoryCache(), createNullCache() // ] }) }); ``` :: ::note{title="Why use the Lite client?"} The Lite client includes the search and recommendation methods needed for the Onderwijsloket instance, without the larger full-client bundle. :: | Setting | Value | | -------------- | ---------------------------------------------------------------------------------------- | | Application ID | WSV9PQ4NXW | | Search Api Key | *Personal* (see [Authentication](https://docs.onderwijsloket.com/search/authentication)) | | Region | EU | ## Send your first request Now that you have the client set up, you can send your first request. The example below searches the `faqs` index for items related to “salaris”. ::code-collapse ```typescript // Search the `faqs` index for the query 'salaris' const query = "salaris"; /** * Perform a search request * * searchForHits is an alias for the search method, * with stricter type castings. */ const result = await client.searchForHits({ requests: [ { indexName: "faqs", query } ] }); const hits = result.results[0]?.hits; /** * The full Algolia client also exposes searchSingleIndex. The Lite client * deliberately uses searchForHits for this request. */ ``` :: ## Call the API directly If you prefer not to use a client library, you can call Algolia’s REST API endpoints directly. Be aware that retry strategies and caching are not included, and must be implemented manually. ::u-button --- icon: simple-icons:algolia target: _blank to: https://www.algolia.com/doc/rest-api/search --- Algolia API Reference :: ## Debounce user input Algolia is fast enough to invite a request per keystroke. Use a 200–300 ms debounce to keep the interface responsive while reducing request volume by 70–90%. This is primarily a cost consideration. Algolia uses per-request pricing and, while powerful and easy to use, can be expensive compared to alternatives. # Authentication You need a valid API key to query Algolia. It is available on your Directus user account when you have the **Algolia token** policy. Read `algolia_token` from your user profile after the policy is assigned. Its permissions mirror Directus: an indexed collection is searchable only when your account may read it in Directus. ::code-collapse ```typescript import { ofetch } from "ofetch"; import { liteClient } from "algoliasearch/lite"; const DIRECTUS_URL = "https://content.onderwijsloket.com"; const DIRECTUS_API_TOKEN = "your_static_api_token_here"; const ALGOLIA_APP_ID = "WSV9PQ4NXW"; // Fetch the Algolia token from Directus const { data } = await ofetch<{ data: { algolia_token: string | null } }>( `${DIRECTUS_URL}/users/me`, { headers: { Authorization: `Bearer ${DIRECTUS_API_TOKEN}` }, query: { fields: [`algolia_token`] } } ); // Initialize the Algolia client with the fetched token const { algolia_token } = data; const client = liteClient(ALGOLIA_APP_ID, algolia_token); ``` :: ## Refresh the token when needed Algolia tokens are static. Permission changes in Directus take effect automatically in the existing token. Tokens only change if access to the search engine is revoked and later restored. This should be rare but can occur due to human error. You may implement a safeguard for this scenario. On [onderwijsloket.com](http://onderwijsloket.com){rel=""nofollow""}, a server route fetches the token from Directus, caches it for seven days, and serves it to clients. Server initialisation fetches it asynchronously and passes it to the client. When the page hydrates, it refreshes the token in the background and stores it in a cookie for ten minutes. It refreshes again after that cookie expires. If the Algolia client receives a `403` response, it fetches a fresh token immediately, bypassing the server-side cache. # Indexes Start here before building filters or rendering search hits. Algolia mirrors Directus closely, but it flattens relations and omits fields that are unsuitable for search. ## Choose an available index The following collections are indexed by Algolia. If you have access to a collection in Directus and permission to use Algolia, you can also access that collection’s indexed data in Algolia: - `articles` - `faqs` - `sectors` - `videos` - `testimonials` - `podcast_episodes` - `podcast_shows` - `programs` - `educational_institutions` - `regional_education_desks` - `locations` The Algolia data model for these collections largely mirrors the Directus data model, with a few key differences. ## Understand relational data Only [content collections](https://docs.onderwijsloket.com/data-model/data-model-overview) are indexed in Algolia. Other collection types—such as *categorization* or *metadata* collections—are not indexed directly. Instead their relational data is embedded into the indexed content items. For example, the `articles` collection includes an `authors` property, which contains an array of author objects. **All junction tables are flattened during sync**. Related items are included only partially—each related record exposes a limited set of fields defined in the relation mappings. These mappings determine which fields Algolia receives for both many-to-many and many-to-one relationships. The following mappings define which properties of related items are synced into Algolia. It does not matter *in which collection the related item is embedded*; the fields included are always the same. ### Use flattened many-to-many relations | | | | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | | **Collection** | **Fields Included** | | `audiences` | `id`, `title` | | `authors` | `id`, `name`, `image` | | `documents` | `id`, `title`, `asset` | | `faqs` | `id`, `question` | | `phases` | `id`, `title` | | `qualifications` | `id`, `name`, `path` | | `roles` | `id`, `name`, `path` | | `sectors` | `id`, `title`, `slug` | | `sources` | `id`, `title` | | `topics` | `id`, `name`, `path` | | `tracks` | `id`, `name`, `path` | | `articles` | `id`, `title`, `path` | | `podcast_shows` | `id`, `title`, `path`, `artwork` | | `podcast_episodes` | `id`, `title`, `path` | | `testimonials` | `id`, `title`, `path` | | `videos` | `id`, `title`, `path` | | `programs` | `id`, `title`, `path`, `educational_institutions.educational_institutions_id.title`, `educational_institutions.educational_institutions_id.logo` | | `profiles` | `id`, `first_name`, `last_name`, `path`, `image` | | `podcast_hosts` | `id`, `first_name`, `last_name`, `image` | | `educational_institutions` | `id`, `title`, `path`, `logo`, `type` | | `locations` | `id`, `title`, `url`, `address`, `zip`, `city`, `country`, `location_geopoint` | ### Use mapped many-to-one relations | | | | ------------------ | ----------------------------------------------------------------------------------------------------------------- | | **Collection** | **Fields Included** | | `topics` | `id`, `name`, `path` | | `news_segments` | `id`, `title` | | `podcast_shows` | `id`, `title`, `path`, `artwork`, `podcast_status`, `creator_name` | | `seasons` | `id`, `season_number`, `year`, `show.title` | | `locations` | `id`, `title`, `url`, `address`, `zip`, `city`, `country`, `location_geopoint`, `opening_hours.id` | | `areas` | `id`, `title`, `area_center`, `area_bounds`, `area_inner` | | `program_forms` | `id`, `url`, `description`, `track.name` | | `podcast_episodes` | `id`, `title`, `path`, `season.season_number`, `show.title`, `show.artwork`, `publication_date`, `episode_number` | ## Know which fields are synced Most fields in a collection are synced to its Algolia index. Some fields, however, are excluded and will never appear in an Algolia record, regardless of collection: - `seo` - `body` (see *Special Fields*) - `description` (when using the [Content Document](https://docs.onderwijsloket.com/misc/content-documents) field type, see *Special Fields*) Certain collections also have additional excluded fields: | | | | -------------------------- | ------------------------------------------------------------------------------ | | **Collection** | **Unsynced fields** | | `educational_institutions` | `hovi_id`, `kiesmbo_id`, `brin_code` | | `podcast_episodes` | `transcript_raw`, `transcript_string_with_speakers`, `speaker_map` | | `programs` | `hovi_id`, `kiesmbo_id`, `study_number`, `program_forms.description` | | `regional_education_desks` | `phone_availability`, `consultation_service_description` | | `videos` | `transcript_raw`, `transcript_string_with_speakers`, `speaker_map`, `chapters` | ## Filter, facet, and search supported attributes Algolia allows you to refine search results [using **filters** and **facets**](https://www.algolia.com/doc/guides/managing-results/refine-results/filtering/in-depth/filters-and-facetfilters){rel=""nofollow""}. Faceting enables users to narrow results based on specific attribute values—for example, filtering articles by sector or program type. Each index defines which attributes are available for faceting, and these vary per collection. In addition, each collection specifies which of its attributes can be searched when sending a query value with you request to Algolia. | | | | | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------- | | **Collection** | **Facetable Attributes** | **Searchable Attributes** | | **articles** | `audiences.title`, `authors.name`, `phases.title`, `qualifications.name`, `roles.name`, `sectors.title`, `topics.name`, `tracks.name`, `english` | `title`, `summary`, `description`, `bodyString`, `topics.name`, `roles.name`, `qualifications.name` | | **educational\_institutions** | `type` | `title`, `type`, `bodyString` | | **faqs** | `audiences.title`, `phases.title`, `sectors.title`, `topics.name` | `question`, `bodyString`, `topics.name` | | **podcast\_episodes** | `audiences.title`, `phases.title`, `roles.name`, `sectors.title`, `topics.name`, `tracks.name`, `show.title` | `title`, `show.title`, `bodyString`, `transcript_string`, `guests.first_name`, `guests.last_name` | | **podcast\_shows** | `audiences.title`, `phases.title`, `sectors.title` | `title`, `creator_name`, `bodyString`, `hosts.first_name`, `hosts.last_name` | | **programs** | `qualifications.name`, `roles.name`, `sectors.title`, `educational_institutions.title`, `type`, `level`, `degree`, `program_forms.tracks.name` | `title`, `program_forms.bodyString`, `qualifications.name`, `educational_institutions.title`, `type`, `level`, `degree` | | **regional\_education\_desks** | `sectors.title`, `has_consultation_service`, `orientation_activity_types`, `content_types` | `title`, `regions`, `cities_municipalities`, `bodyString` | | **sectors** | *(none)* | `title`, `alt_names`, `description`, `introduction`, `roles_content`, `routes_content`, `salary_content`, `costs_content` | | **testimonials** | `audiences.title`, `authors.name`, `phases.title`, `roles.name`, `sectors.title`, `topics.name`, `tracks.name` | `title`, `summary`, `description`, `bodyString`, `topic.name`, `authors.name`, `roles.name` | | **videos** | `audiences.title`, `phases.title`, `roles.name`, `sectors.title`, `topics.name`, `tracks.name` | `title`, `transcript_string`, `profiles.first_name`, `profiles.last_name`, `bodyString` | | **locations** | `has_programs`, `has_educational_institutions`, `has_regional_education_desks` | (none) | ## Handle special fields Some collection fields include specialized handlers and mappings. These are outlined below. ### Use geo data for location search Algolia supports [geospatial search, filtering and sorting](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/geo-search/js){rel=""nofollow""}, which is especially useful when working with [*navigator collections*](https://docs.onderwijsloket.com/data-model/families/navigator) containing location data. For `regional_education_desks`, the `_geoloc` property contains an array of coordinate pairs. This array represents a grid of individual points describing the desk’s area of operation. These points have no real-world physical meaning; they exist solely to enable filtering for cases where *the area of operation falls within a radius of size X relative to the user’s location*. ::callout{color="warning" icon="i-lucide-triangle-alert"} This is a workaround for Algolia’s geo search limitations, which prevent comparing or filtering two areas or polygons. See [advanced usage](https://docs.onderwijsloket.com/search/advanced-usage) for implementation details and examples. :: ### Search flattened content documents Fields of type *Content Document* contain deeply nested, tree-structured JSON. Algolia does not index such objects effectively. To ensure reliable search behavior, these documents are synchronized as a flat text string without markup. The resulting string is stored in the `bodyString` property, which is searchable by default. # Advanced usage This page builds on a configured [search client](https://docs.onderwijsloket.com/search/setting-up-a-client) and explains the patterns behind our production interfaces. Every example is also available in the [code snippets repository](https://github.com/onderwijsin/onderwijsloket-examples/tree/main){rel=""nofollow""}. ::tip{title="Choose the smallest pattern that works"} Use a single index for focused search, multi-search for a global result page, and geo-search only when location is a product requirement. :: ## Add facets to article search Article search with faceting allows users to query the `articles` index and refine results using one or more filter criteria (facets). The following example illustrates a basic search and facet workflow. Implementation specifics vary by language, framework, and search client. ::code-collapse ```typescript import { liteClient } from "algoliasearch/lite"; import type { AlgoliaArticle } from "#schema"; // Or wherever your types are defined const ALGOLIA_APP_ID = "WSV9PQ4NXW"; const ALGOLIA_TOKEN = "your_algolia_token_here"; const client = liteClient(ALGOLIA_APP_ID, ALGOLIA_TOKEN); export type AlgoliaFacetList = Record>; /** * Fetch all facets for a given Algolia index. * @param indexName - Name of the Algolia index * @returns Complete list of facets or null if none found */ async function fetchAllFacetsForIndex(indexName: string): Promise { const response = await client.searchForHits({ requests: [ { indexName, facets: ["*"], hitsPerPage: 0, // We don't need actual hits maxValuesPerFacet: 5000 // We might need to adjust this based on expected facet values } ] }); const data = response.results[0]; if (!data || !data.facets) return null; return data.facets satisfies AlgoliaFacetList; } const facetData = await fetchAllFacetsForIndex("articles"); const facetKeys = Object.keys(facetData.value || {}); /** * Declare a reactive state where you track selected facets * Implementation may vary based on your framework (e.g., Vue, React, etc.) */ const facetState = useState("facetState", () => { const state: Record = {}; facetKeys.forEach((key) => { state[key] = []; }); return state; }); /** * Declare reactive state for search query with debounce */ const query = useState("searchQuery", () => ""); const debouncedQuery = useDebounce(query, 300); /** * Declare reactive state for pagination */ const PAGE_SIZE = 20; const MAX_PAGE_SIZE = 500; const perPage = useState("perPage", () => PAGE_SIZE); /** * Generate the current filter string based on selected facets * @returns Filter string for Algolia queries */ const getCurrentFilter = () => { const filters: string[] = []; facetKeys.forEach((key) => { const selectedValues = facetState[key]; if (selectedValues.length > 0) { filters.push(...selectedValues.map((value) => `${key}:"${value}"`)); } }); return filters.join(" AND "); }; const response = await client.searchForHits({ requests: [ { indexName: "articles", query: debouncedQuery, hitsPerPage: perPage > MAX_PAGE_SIZE ? MAX_PAGE_SIZE : perPage, facets: ["*"], filters: getCurrentFilter(), // Take 50 words from bodyString for highlight snippets attributesToSnippet: ["bodyString:50"] } ] }); ``` :: ## Search multiple indexes in one request You don’t need to query a single index at a time. **Algolia supports multi-search**, allowing you to send queries to multiple indexes in a single request. This is particularly useful for implementing **global search** across different types of content. Instead of performing separate API calls per index, you can send one request containing multiple index queries. The response will return results in the **same order as the requested indexes**, making it straightforward to map results back to their source index. ### Send the requests The following example sends a search query to **seven indexes** in a single API call. Each index can define **its own search configuration**, while sharing the same query string. ::code-collapse ```typescript import { algolia } from "./algolia-client"; import type { SearchParams } from "algoliasearch"; /** * Indexes to search. The order of the indexes in this array determines * the order of the results returned by Algolia. */ const INDEXES = [ "articles", "faqs", "programs", "regional_education_desks", "podcast_episodes", "testimonials", "videos" ] as const; type IndexName = (typeof INDEXES)[number]; /** * Define search parameters per index. * These can include attributes to retrieve, highlighting, snippets, * and the number of hits per page. */ const indexSearchConfig: Record> = { articles: { hitsPerPage: 3, attributesToRetrieve: [ "id", "title", "path", "description", "authors", "topics", "date_updated", "date_created" ], attributesToSnippet: ["bodyString:25"], attributesToHighlight: ["title"], getRankingInfo: false }, faqs: { hitsPerPage: 5, attributesToRetrieve: ["id", "question"], attributesToSnippet: ["bodyString:20"], attributesToHighlight: ["question", "bodyString"], getRankingInfo: false }, videos: { hitsPerPage: 3, attributesToRetrieve: [ "id", "title", "path", "video", "duration", "publication_date", "profiles" ], attributesToSnippet: ["transcript_string:50"], attributesToHighlight: ["title"], getRankingInfo: false }, testimonials: { hitsPerPage: 3, attributesToRetrieve: [ "id", "title", "path", "description", "profiles", "topics", "publication_date" ], attributesToSnippet: ["bodyString:50"], attributesToHighlight: ["title"], getRankingInfo: false }, podcast_episodes: { hitsPerPage: 3, attributesToRetrieve: ["id", "title", "path", "show", "duration", "publication_date", "hosts"], attributesToSnippet: ["transcript_string:50"], attributesToHighlight: ["title"], getRankingInfo: false }, programs: { hitsPerPage: 5, attributesToRetrieve: ["id", "title", "path", "logo", "qualifications", "roles"], attributesToSnippet: [], attributesToHighlight: ["title"], getRankingInfo: false }, regional_education_desks: { hitsPerPage: 3, attributesToRetrieve: ["id", "title", "path", "logo", "sectors", "regions"], attributesToSnippet: [], attributesToHighlight: ["title"], getRankingInfo: false } }; function getIndexSearchConfig(index: IndexName): Partial { return indexSearchConfig[index] || {}; } /** * Example UI state */ const selectedIndexes = [...INDEXES]; const query = "onderwijs"; /** * Execute a multi-index search request. */ const { results } = await algolia.searchForHits({ requests: selectedIndexes.map((index) => ({ ...getIndexSearchConfig(index), indexName: index, query })) }); console.log(JSON.stringify(results, null, 2)); ``` :: ### Process results in request order The `results` array returned by Algolia corresponds **directly to the order of the requests**. For example: | | | | -------------------------- | ------------------- | | **Request Index** | **Returned Result** | | `articles` | `results[0]` | | `faqs` | `results[1]` | | `programs` | `results[2]` | | `regional_education_desks` | `results[3]` | | `podcast_episodes` | `results[4]` | | `testimonials` | `results[5]` | | `videos` | `results[6]` | You can also extract the **total number of hits per index**, which is useful for displaying result counts in your UI. ```typescript const countByIndex = Object.fromEntries( results.map((result, idx) => [selectedIndexes[idx], result.nbHits]) ); console.log(JSON.stringify(countByIndex, null, 2)); // Example output: // { // "articles": 124, // "faqs": 38, // "programs": 19, // "regional_education_desks": 7, // "podcast_episodes": 21, // "testimonials": 11, // "videos": 16 // } ``` ## Find programmes near a location Algolia supports **geo-based search**, allowing you to return results based on their proximity to a user’s location. This example demonstrates how to perform a **geolocation search for educational programs**, while also retrieving related **location data** to render markers on a map. - A search query is executed against the `programs`\*\* index\*\*. - Results are **ranked and filtered by distance** from the user's location. - A second query retrieves **location records** from the `locations`\*\* index\*\*. - The results are combined to produce **map markers with distance information**. ::callout{color="info" icon="i-lucide-external-link"} The example closely mirrors our own implementation at {rel=""nofollow""} . :: ### Send a geo-search request ::callout{color="info" icon="i-lucide-map-pin"} The example assumes you have access to the **user’s geolocation** (for example via the browser Geolocation API). :: ::code-collapse ```typescript import { algolia } from "./algolia-client"; /** * Example UI State */ const query = "onderwijs"; const hitsPerPage = 20; const page = 0; const userLocation = { lat: 52.3676, lng: 4.9041 }; const radius = 50_000; // 50 kilometers type GeoSearchOptions = { aroundLatLng: string; aroundRadius?: number; getRankingInfo: true; }; const geoSearchParams: GeoSearchOptions = { aroundLatLng: [userLocation.lat, userLocation.lng].join(","), aroundRadius: radius, getRankingInfo: true }; /** [lng, lat] tuple */ type Coordinates = [number, number]; interface GeoPoint { type: "Point"; coordinates: Coordinates; } interface AlgoliaLocation { id: string; objectID: string; title: string; address: string | null; zip: string | null; city: string | null; location_geopoint: GeoPoint | null; programs: { id: string; educational_institutions: { logo: string | null; title: string }[]; }[]; } type EducationalInstitutionType = "hogeschool" | "universiteit" | "mbo"; type ProgramLevelValue = "mbo" | "bachelor" | "master" | "phd" | "post-graduate" | "preparatory" | "associate"; interface AlgoliaProgram { id: string; objectID: string; title: string; path: string; level: ProgramLevelValue | null; educational_institutions: { id: string; title: string; path: string; logo: string | null; type: EducationalInstitutionType | null; }[]; qualifications: { id: string; path: string; name: string; }[]; } const locationResponse = await algolia.searchForHits({ requests: [ { indexName: "locations", query: "", hitsPerPage: 500, filters: "has_programs:true", attributesToRetrieve: [ "id", "location_geopoint", "programs", "title", "address", "city", "zip" ], attributesToHighlight: [], ...geoSearchParams } ] }); const locationData = locationResponse.results[0]; const programResponse = await algolia.searchForHits({ requests: [ { indexName: "programs", query, hitsPerPage, page, attributesToRetrieve: [ "id", "title", "path", "educational_institutions", "qualifications", "level" ], attributesToHighlight: [], ...geoSearchParams } ] }); const programData = programResponse.results[0]; const programIds = programData.hits.map((program) => program.id); ``` :: Algolia provides several parameters to enable geo-based search. ::field-group :::field{name="aroundLatLng" type="string"} The center point for the search, formatted as `latitude,longitude` . ::: :::field{name="aroundRadius" type="number"} Optional radius, in meters, that limits results. ::: :::field{name="getRankingInfo" type="boolean"} Returns ranking metadata such as the distance from the query location. ::: :: ```typescript const geoSearchParams = { aroundLatLng: `${userLocation.lat},${userLocation.lng}`, aroundRadius: 50000, getRankingInfo: true }; ``` ::callout{color="warning" icon="i-lucide-triangle-alert"} If `aroundRadius` is not provided, Algolia will **rank results by proximity** , but **won’t enforce a strict distance limit** . :: ### Query programmes and locations separately This example queries both: - `programs` - `locations` The reason is **data efficiency**. A location can be associated with **many programs**. Instead of embedding full location data inside every program record, the data is stored in a separate `locations` index. ::callout{color="info" icon="i-lucide-chart-no-axes-combined"} At the time of writing, the dataset contains roughly **200 locations for 1,000+ programs** , making separate indexes more efficient. :: This avoids **overfetching location data** when querying programs. You could query both indexes using **multi-search**, but separate queries can be more efficient depending on your UI behavior. | | | | ---------------- | ------------------------------------------------ | | **Approach** | **When to Use** | | Multi-search | When both indexes use the same search parameters | | Separate queries | When filters or facets apply only to one index | For example: - If **facet filters only affect programs**, you can re-fetch only the `programs` index when filters change. - The `locations` query can remain cached since it only depends on **user location and radius**. ### Create map markers Once both responses are retrieved, you can construct **map markers** from the location results. The code below filters locations to only include those associated with the retrieved programs. ::code-collapse ```typescript const mapMarkers = locationData.hits .filter( (location) => location.programs.map((program) => program.id).some((id) => programIds.includes(id)) && !!location.location_geopoint?.coordinates ) .map((location) => { const addressLine = location.address ? `${location.address}, ${location.city} ${location.zip}` : location.city ? location.city : undefined; return { id: location.id, title: location.title, collection: "programs", coordinates: location.location_geopoint!.coordinates, description: addressLine, programsCount: location.programs.length, distance: location._rankingInfo!.geoDistance }; }); ``` :: ### Render the result The final `mapMarkers` array can be used to render **interactive map markers** in your UI, while the `programs` results populate a **search results list** sorted by proximity. ## Find regional education desks by area Unlike entities such as **programs**, **educational institutions**, or **locations**, regional education desks are **not tied to a single geographic point**. Instead, each desk operates within a **defined geographic region**. To support geo-based search in Algolia, each record stores: - A **coordinate grid** representing the area of operation - Detailed geographic information describing the region boundaries This allows Algolia to calculate distances between the **user’s location** and **points within the region**, making it possible to retrieve desks relevant to the user’s search area. ::callout{color="info" icon="i-lucide-external-link"} The example closely mirrors our own implementation at {rel=""nofollow""} . :: ### Send an area-search request ::code-collapse ```typescript import { algolia } from "./algolia-client"; import { GeoPoint, GeoPolygon, GeoMultiPoint, GeoSearchOptions } from "./types/geolocation"; /** * Example UI State */ const query = ""; const hitsPerPage = 20; const page = 0; const userLocation = { lat: 52.3676, lng: 4.9041 }; const radius = 50_000; // 50 kilometers /** * Construct the geo search params object to use */ const geoSearchParams: GeoSearchOptions = { aroundLatLng: [userLocation.lat, userLocation.lng].join(","), aroundRadius: radius, getRankingInfo: true }; /** * Interface for the Regional Education Desks record we will be fetching */ interface AlgoliaRegionalEducationDesk { id: string; objectID: string; title: string; sectors: { id: string; title: string; slug: string; }[]; logo: string | null; email: string | null; phone: string | null; path: string; regions: string[]; area: { id: string; title: string | null; area_center: GeoPoint; area_bounds: GeoPolygon; area_inner: GeoMultiPoint; } | null; } const regionalEducationDesksResponse = await algolia.searchForHits({ requests: [ { indexName: "regional_education_desks", query, hitsPerPage, page, attributesToRetrieve: [ "title", "regions", "sectors", "email", "logo", "phone", "path", "area" ], attributesToHighlight: [], ...geoSearchParams } ] }); const data = regionalEducationDesksResponse.results[0]; console.log(JSON.stringify(data, null, 2)); ``` :: ### Understand the area workaround Algolia’s geo-search features are designed primarily for **point-based locations**. However, in this case each record represents a **geographic region (polygon)** rather than a single coordinate. Algolia does not natively support: - Checking if **two polygons intersect** - Calculating the **distance between a polygon and a point** To work around this limitation, each regional education desk record includes a **grid of coordinates representing the region**. These coordinates are stored in the `_geoloc` property, which Algolia automatically uses for geo-based searches. ::callout{color="info" icon="i-lucide-map"} By indexing a grid of coordinates within the region, Algolia can calculate distances between the user’s location and **multiple points inside the region** , effectively approximating **area intersection queries** . :: ### Use the geographic data structure Each regional education desk record contains an `area` object describing its area of operation. ::field-group :::field{name="area_center" type="GeoPoint"} Geographic centroid of the region. ::: :::field{name="area_bounds" type="GeoPolygon"} Polygon representing the outer boundary of the region. ::: :::field{name="area_inner" type="GeoMultiPoint"} Coordinate grid covering the region. ::: :: The **coordinate grid (**`area_inner`**)** is used for geo-search, while the **polygon (**`area_bounds`**)** can be used for visualization or map rendering. ### Render the matching desks The returned records contain both **metadata about the desk** and **geographic information** describing its service region. This allows you to: - Display **regional desks near the user** - Show **service areas on a map** - Provide **contact information** for the relevant desk Typical UI elements include: - Map markers positioned at `area_center` - Highlighted polygons using `area_bounds` - Lists of nearby desks sorted by distance # Try it out Use the sandbox to inspect search behaviour before requesting Algolia access. It does not require additional permissions. ## Use the sandbox token The sandbox token provides **query** and **browse** access to all indexes, while usage limits are enforced to prevent misuse. :algolia-sandbox-token ::warning The sandbox token is for exploration only. Do not use it in a production integration. :: ### Respect the usage limits The sandbox token has the following restrictions: - The token **rotates every hour** - Up to **60 API calls per IP address per hour** - A maximum of **10 hits per query** You can use this token to test queries against the available indexes and explore how the search API behaves under standard conditions. ## Explore production examples See unrestricted search on onderwijsloket.com to understand how these patterns appear in a product: - Using a single index query: [search through our articles](https://onderwijsloket.com/kennisbank/artikelen){rel=""nofollow""} - Using a multi index query: try our [global search feature](https://onderwijsloket.com/kennisbank/artikelen){rel=""nofollow""} (hit `CTRL + K` from any page) # Data Model Overview Onderwijsloket has dozens of information types, called **collections**. A collection holds items of one kind, such as articles, programmes, or locations. ## Recognise collection types Within our schema, we distinguish several types of collections, each serving a specific purpose: - **Content collections**: :br The core *information carriers*, such as `articles`, `faqs`, or `programs`. - **Categorization collections**: :br Collections used to group and classify content. Some categorization collections relate to a single content collection, while others categorize multiple content collections. Examples include `topics`, `tracks`, `roles`, and `qualifications`. - **Meta collections**: :br Collections used to assign metadata to content, such as `authors`, `sources`, or `locations`. - **Block collections**: :br Collections used as relational nodes in *Content Documents*. See [Content Documents](https://docs.onderwijsloket.com/misc/content-documents) for how to render them. - **Junction collections**: :br Collections that define many-to-many relationships between items. As with any system, there are exceptions. For example, the **sectors** collection functions both as a content collection and a categorization collection. ::tip{title="Need an exhaustive field list?"} The [interactive API explorer](https://docs.onderwijsloket.com/api-reference){rel=""nofollow""} is the source of truth for every collection and field. :: ## Navigate collection families To make the schema easier to understand, we organize collections into **families** of closely related information. These families have no technical impact but help clarify the structure. - **Knowledge base**: Objective, neutral information in the form of articles and FAQs. - **Navigator**: Organizations, their contact details, and their offerings within the educational sector. - **Media**: Subjective content describing personal experiences in educational careers, including podcasts, videos, and blog posts. - **Routes**: Data describing potential pathways into educational careers based on personal characteristics. - **Filters**: Categorization collections shared across multiple families. - **System**: Data types tied to internal system functionality or not directly associated with other families. The following pages describe the most useful families. Use the API reference when you need the complete collection and field inventory. # Type Definitions We do not currently publish a first-class API type package. Choose one of these approaches when your project needs strict response types. ## Define project-specific types Define your own types based on the expected API responses. This approach gives you full control over: - Naming conventions - Optional vs. required fields - Nested object structures - Field transformations applied in your application Use the API responses and schema definitions as the source of truth when modeling your types. ::tip Choose this when you need clean, maintainable types tailored to your application. :: ## Start from our example schema Copy and paste [the type schema](https://github.com/onderwijsin/onderwijsloket-examples/blob/main/src/types/schema.ts){rel=""nofollow""} from our code snippets repository. We maintain and update these definitions regularly to reflect changes in the API schema. ::tip Choose this when you want a fast starting point with minimal setup. :: ::warning The example schema includes types you may not be allowed to read. Your available data still depends on [your permissions](https://docs.onderwijsloket.com/misc/permissions){rel=""nofollow""} . :: ## Generate types from OpenAPI You can generate types automatically from our OpenAPI specification using standard OpenAPI tooling. However, be aware that: - The generated types may be verbose. - The structure may not be idiomatic for your language. - Some definitions may be difficult to use directly. This is due to how Directus generates its OpenAPI specification, which prioritizes completeness over developer ergonomics. ::tip Choose this when automated schema synchronisation matters and you can refine generated output. :: # Knowledge Base Use Knowledge Base collections for neutral, factual information about the education sector and routes into it. Unlike [Media](https://docs.onderwijsloket.com/data-model/families/media), they prioritise structured explanations and guidance over personal experience. These collections power content formats such as: - Informational articles - Frequently asked questions Knowledge base content often combines structured text with taxonomy relations (filters) such as roles, sectors, audiences, and topics. This allows the information to be surfaced throughout the platform in contextually relevant places. :u-page-card{description="Taxonomy collections used for tagging and filtering core content collections." title="Filters" to="https://docs.onderwijsloket.com/data-model/families/filters"} The following collections make up the Knowledge Base family. ## Retrieve articles ```plaintext GET /items/articles ``` The `articles` collection contains long-form informational content about working in education. Articles are used to explain topics such as qualifications, career paths, legislation, and practical considerations for entering the education sector. Articles are structured using the content editor. The main content is stored in the `editor_nodes` relation, which contains the modular blocks that together form the article page. :u-page-card{description="Learn how to work with our rich JSON documents and the relational nodes." title="Content Documents" to="https://docs.onderwijsloket.com/misc/content-documents"} Articles may also reference supporting materials such as `documents` and `sources` used during research. ::callout{color="primary" icon="i-lucide-book-open"} Check out [the full article list](https://onderwijsloket.com/kennisbank/artikelen){rel=""nofollow""} in our knowledge base! :: ## Retrieve FAQs ```plaintext GET /items/faqs ``` The `faqs` collection contains short-form informational entries that answer common questions about working in education. Each FAQ consists of a **question** and an **answer**, allowing the platform to surface concise explanations in search results, topic pages, and other contextual interfaces. FAQs are often linked to one or more articles, allowing users to navigate from a short answer to more detailed information. ::callout{color="primary" icon="i-lucide-circle-help"} Search through [all Frequently Asked Questions](https://onderwijsloket.com/kennisbank/veelgestelde-vragen){rel=""nofollow""} in our knowledge base! :: ## Retrieve sources ```plaintext GET /items/sources ``` The `sources` collection stores references used in knowledge base articles. A source typically represents a document, publication, or external website used to support the factual information presented in an article. Sources may include a title, optional description, and a URL pointing to the original publication. Sources can be connected to multiple articles, allowing the same reference to be reused across the knowledge base. ## Retrieve documents ```plaintext GET /items/documents ``` The `documents` collection contains downloadable files referenced by articles. These may include official documents, reports, or supporting materials that provide additional context for the information presented in the knowledge base. Documents are linked to one or more articles and reference a stored file asset, hosted and distributed through Cloudinary. :u-page-card{description="Using Cloudinary for asset delivery and transformation." title="Cloudinary" to="https://docs.onderwijsloket.com/misc/cloudinary"} ## Retrieve authors ```plaintext GET /items/authors ``` The `authors` collection contains information about the people responsible for writing or contributing to knowledge base articles. Authors can be linked to multiple articles and may also be associated with testimonials in the Media family. This allows the platform to display consistent author attribution across different types of content. # Navigator Use Navigator collections to help people discover concrete opportunities: programmes, providers, locations, and regional support services. Unlike the Knowledge Base collections, which focus on explaining how the system works, Navigator collections describe **real-world entities** within the education ecosystem. These collections power content such as: - Training programs and study pathways - Educational institutions offering these programs - Physical locations where programs are taught - Regional education desks that provide guidance and consultation Data within this section is sourced from various external vendors. Access to datasets that are **not proprietary to Onderwijsloket** requires additional permissions. :u-page-card{description="An overview of different access policies and their permissions within the system." title="Permissions" to="https://docs.onderwijsloket.com/misc/permissions"} The following collections make up the Navigator family. ## Retrieve programmes ```plaintext GET /items/programs ``` The `programs` collection contains information about educational programs that lead to qualifications for roles in the education sector. Programs originate from external data suppliers and are periodically synchronized into the platform. Because of this, records (may) contain metadata about the source vendor and synchronization timestamps. Programs are connected to: - `educational_institutions` offering the program - `locations` where the program is taught - `program_forms` describing variations of the program Programs may also contain identifiers such as **CROHO** and **CREBO**, which correspond to official Dutch education registry systems. ## Retrieve programme forms ```plaintext GET /items/program_forms ``` The `program_forms` collection describes variations of a program. These variants represent different ways the same program can be followed, such as different learning tracks or program formats. Each form belongs to a single program and may include a link to an external page where more information about the specific variant can be found. ## Retrieve educational institutions ```plaintext GET /items/educational_institutions ``` The `educational_institutions` collection represents organizations that offer educational programs. Examples include universities, universities of applied sciences, and vocational education institutions. Institutions store basic organizational information and are connected to: - `locations` where the institution operates - `programs` offered by the institution As with programs, institution data is typically synchronized from external vendors. ## Retrieve locations ```plaintext GET /items/locations ``` The `locations` collection contains physical locations associated with educational institutions and programs. Locations store address information and geographic metadata used for mapping and search functionality. Locations may be connected to: - educational institutions - programs offered at that location This allows the platform to display where a program can be followed. ## Retrieve regional education desks ```plaintext GET /items/regional_education_desks ``` The `regional_education_desks` collection contains organizations that provide guidance to people interested in working in education. These desks offer services such as consultations, orientation activities, and information about entering the education sector. Each desk may include contact information, service descriptions, and links where users can schedule a consultation. Regional education desks often operate within a specific geographic area and may provide both **digital consultation services** and **physical meeting locations**. ## Retrieve service areas ```plaintext GET /items/areas ``` The `areas` collection defines geographic areas used to represent service regions for regional education desks. These records contain geographic metadata describing the boundaries and center of a region. Areas are primarily used to determine which regional education desk is relevant for a user based on their location. ## Build navigator experiences Various examples demonstrating how to interact with these collections, including how to perform geo-based search queries, can be found in the **Advanced Usage** article and [the example repository](https://github.com/onderwijsin/onderwijsloket-examples){rel=""nofollow""}. :u-page-card{description="Discover advanced Algolia Search features through real-world examples." title="Advanced usage" to="https://docs.onderwijsloket.com/search/advanced-usage"} # Media Use Media collections for personal experiences in education: stories, interviews, and conversations that complement the objective Knowledge Base. These collections power content formats such as: - Video interviews - Personal stories and testimonials - Podcast shows and episodes - Profiles of professionals in education Media collections often combine **narrative content** with **taxonomy relations** (filters) such as `roles`, `sectors`, `audiences`, and `topics`. This allows media content to appear alongside informational content throughout the platform. :u-page-card{description="Taxonomy collections used for tagging and filtering core content collections." title="Filters" to="https://docs.onderwijsloket.com/data-model/families/filters"} The following collections make up the Media family. ## Retrieve videos ```plaintext GET /items/videos ``` The `videos` collection stores video-based content such as interviews, explainers, or experience stories. Each video includes basic metadata such as a title, slug, and duration, as well as optional transcript data and chapter information. Videos may also be linked to **profiles** representing the people appearing in the video. ::callout{color="warning" icon="i-lucide-clock"} Videos with a `publication_date` in the future are **discoverable through the API but cannot yet be viewed** . :: Video assets are hosted and distributed with Cloudinary. Refer to the article on Cloudinary integration for more info on asset management and optimization. :u-page-card{description="Using Cloudinary for asset delivery and transformation." title="Cloudinary" to="https://docs.onderwijsloket.com/misc/cloudinary"} ## Retrieve testimonials ```plaintext GET /items/testimonials ``` The `testimonials` collection contains **personal stories and experiences** from people working in or transitioning into education. Testimonials are structured similarly to articles and use the content editor to build rich pages composed of modular content blocks. :u-page-card{description="Learn how to work with our rich JSON documents and the relational nodes." title="Content Documents" to="https://docs.onderwijsloket.com/misc/content-documents"} The main content is stored in the `editor_nodes` relation, which contains the structured blocks that form the page. ::callout{color="warning" icon="i-lucide-clock"} Testimonials with a future `publication_date` are visible through the API but its content cannot yet be read. :: ## Retrieve podcast shows ```plaintext GET /items/podcast_shows ``` The `podcast_shows` collection represents a **podcast series**. Each show contains metadata about the podcast as a whole and references the episodes that belong to it. Podcast shows are directly related to: - `episodes` - `seasons` - `hosts` ## Retrieve podcast episodes ```plaintext GET /items/podcast_episodes ``` The `podcast_episodes` collection stores individual podcast episodes belonging to a show. Each episode is associated with both a **show** and a **season**. Episodes may also include transcripts and speaker mappings. ::callout{color="warning" icon="i-lucide-clock"} Episodes with a `publication_date` in the future are visible in listings but cannot yet be played. :: Audio assets are hosted and distributed with Cloudinary. Refer to the article on Cloudinary integration for more info on asset management and optimization. :u-page-card{description="Using Cloudinary for asset delivery and transformation." title="Cloudinary" to="https://docs.onderwijsloket.com/misc/cloudinary"} ## Retrieve seasons ```plaintext GET /items/seasons ``` The `seasons` collection groups podcast episodes into **season-based releases**. ## Retrieve podcast hosts ```plaintext GET /items/podcast_hosts ``` The `podcast_hosts` collection contains information about the hosts presenting podcast episodes. Hosts can be connected to: - `podcast_shows` - `podcast_episodes` ## Retrieve featured profiles ```plaintext GET /items/profiles ``` The `profiles` collection represents **people featured in media content**, such as teachers, guests, or interview subjects. Profiles provide a reusable way to connect individuals across different types of media content. Profiles are commonly linked to: - `videos` - `podcast_episodes` - `testimonials` # Routes There are **3,378** possible pathways to qualifications for education roles. A route is useful only when it matches an individual’s situation and ambition. To help users navigate these possibilities, we built the route discovery tool: [Explore the Routes Tool](https://onderwijsloket.com/routes){rel=""nofollow""} By answering four questions about their **current situation** and **career ambitions**, users receive an overview of the pathways that are relevant to them. To power this functionality, the system uses four collections: | Collection | Purpose | | ----------------- | ---------------------------------------------------------- | | `route_questions` | Stores the questions presented in the route discovery tool | | `route_answers` | Stores the individual answer options for each question | | `route_steps` | Stores the individual steps that make up a route | | `routes` | Stores the complete pathways into roles in education | The questionnaire and the results logic rely on these collections in different ways. The following sections describe both parts of the system. ## Build the questionnaire The `route_questions` collection is relatively simple: it contains the four questions used by the route discovery tool. The `route_answers` collection is more complex. The available answer options are **dynamic**, meaning that the answers shown depend on earlier selections made by the user. For example: - The **role** a user can select (question 2) depends on the **type of school** selected in question 1. - The **qualification** a user wants to obtain (question 4) depends on the **role** selected in question 2. Because of these dependencies, the questionnaire must be implemented dynamically. ::note{title="Fetch answers progressively"} When implementing the questionnaire, present the questions **one at a time** and fetch the available answer options between steps. :: An alternative approach is to fetch all `route_answers` at once and implement the conditional logic on the client side. This is the approach used in the Onderwijsloket application. While this results in a slightly heavier initial request, it reduces subsequent API calls and provides a smoother user experience. ## Return matching routes After the user has answered all four questions, you can [fetch the relevant routes](https://docs.onderwijsloket.com/api-reference#tag/routes){rel=""nofollow""} using the `routes` collection. ::code-collapse ```typescript const selectedAnswers = ["abc-123", "def-456", "ghi-789", "jkl-012"]; const data = directus.request( readItems("routes", { fields: [ "id", "duration_in_months", "title", "path", { route_steps: [ { route_steps_id: ["id", "short_title", "duration_in_months"] } ] } ], filter: { requires_answers: { _none: { route_answers_id: { _nin: selectedAnswers } } } }, sort: ["duration_in_months"] }) ); ``` :: Each route in the `routes` collection contains a list of answers in the `requires_answers` field. These represent the answers a user **must have selected** for the route to be relevant. ```typescript filter: { requires_answers: { _none: { route_answers_id: { _nin: selectedAnswers, } } } } ``` In simple terms, this means: > Only return routes where **all required answers are included in the answers the user selected**. How it works in practice: - After the user answers the four questions, their selections are stored in `selectedAnswers`. - Each route has a set of required answers (`requires_answers`). - The filter removes any route that requires an answer the user did **not** select. Example: - User selected answers: `[A, B, C, D]` - Route requires: `[A, C]` → **included** - Route requires: `[A, E]` → **excluded**, because the user didn’t select `E`. This way the API only returns routes that match the user’s situation and ambitions based on the answers they provided. # Filters These collections are shared taxonomy, not primary content. Usually, you query them to filter or group other collections rather than render them on their own. Below is an overview of the available global categories. For a complete overview of the relationships between these categories and the content collections, refer to the [interactive API Explorer](https://docs.onderwijsloket.com/api-reference){rel=""nofollow""}. ## Use the available taxonomies ### Topics `GET /items/topics` Subjects that content items may cover, such as guest teaching, salaries, legislation, and many other education-related topics. ### Qualifications `GET /items/qualifications` ([explore](https://docs.onderwijsloket.com/api-reference#tag/qualifications){rel=""nofollow""}) The different types of qualifications required in the education sector. This includes teaching certifications as well as qualifications for supporting or leadership roles. ### Roles `GET /items/roles` ([explore](https://docs.onderwijsloket.com/api-reference#tag/roles){rel=""nofollow""}) The roles that professionals can hold within the education sector, ranging from teachers and mentors to administrative staff and school leadership. ### Tracks `GET /items/tracks` ([explore](https://docs.onderwijsloket.com/api-reference#tag/tracks){rel=""nofollow""}) Educational pathways through which someone can obtain a qualification for a role in education. Examples include lateral-entry programs, full-time teacher training programs, and educational master's programs. ### School Subjects `GET /items/school_subjects` ([explore](https://docs.onderwijsloket.com/api-reference#tag/schoolsubjects){rel=""nofollow""}) Subjects taught in secondary education. While the list may not be completely exhaustive, it includes nearly all commonly taught school subjects, with only a few exceptional cases omitted. ### Sectors `GET /items/sectors` ([explore](https://docs.onderwijsloket.com/api-reference#tag/sectors){rel=""nofollow""}) The five sectors within the Dutch education system, ranging from primary to higher education. Unlike the other categorization collections, **sectors also contain their own content**. These items are used, for example, on the [*“Working in …”* pages](https://onderwijsloket.com/werken-in-het-primair-onderwijs){rel=""nofollow""} on onderwijsloket.com. ### Phases `GET /items/phases` ([explore](https://docs.onderwijsloket.com/api-reference#tag/phases){rel=""nofollow""}) The different stages in the candidate journey toward a role in education, from the first moment of interest through long-term retention in the profession. Most data within Onderwijsloket is primarily focused on the **orientation phase**. More information about the definition of each phase can be found in [this related article](https://onderwijsin.nl/artikelen/overstapper-in-beeld){rel=""nofollow""}. ### Audiences `GET /items/audiences` ([explore](https://docs.onderwijsloket.com/api-reference#tag/audiences){rel=""nofollow""}) The target audiences served by the information provided by Onderwijsloket, such as career switchers, prospective students, internal switchers, and returning professionals. Most of the available data is primarily focused on **career switchers**. # Glossary Dutch education has terminology that does not always translate cleanly. Our API uses English-first names to keep integrations and SDKs consistent. ::note{title="Some API descriptions remain Dutch"} The API Reference shares descriptions with the Directus Data Studio. We prioritise useful Dutch editor guidance over translating every OpenAPI description. Therefore some of the OpenAPI descriptions remain in Dutch. :: ## Look up common terms To ensure that you do not have to infer the meaning of our terminology, we have included common terms in the glossary below. ::tip This glossary is a work in progress. If you come across terms that are confusing and unexplained, [please let us know](mailto:remi@onderwijsin.nl?subject=Glossary+Suggestion) and we’ll add them to the list. :: | **Term** | **Translation** | **Definition** | | ----------------------- | ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Regional Education Desk | Regioloket | Regional variants of *onderwijsloketten*. Most *onderwijsregio’s* have a regional education desk. Although their services relate to the *Onderwijsloket*, there is no direct affiliation. | | Program | Opleiding | Courses, studies, and other educational programs that result in qualifications for working in the educational sector. Primarily—though not exclusively—teacher-training programs. | | Testimonial | Ervaringsverhaal | An article describing an individual’s experience working in the educational sector. | | Educational Institution | Onderwijsinstelling | Institutions that are offering *programs*. Can be universities, universities of applied sciences or vocational school. Schools in primary and secondary education are **not included.** | # Content Documents Content collections often expose a document field such as `body` plus `editor_nodes`. Together they represent a [Tiptap](https://tiptap.dev/){rel=""nofollow""} document with relational data for custom nodes. ::steps ### Parse the document JSON Support the Tiptap nodes and marks that can occur in the field you use. ### Fetch and inject relational nodes Request `editor_nodes`, then merge the referenced data back into the JSON tree. ### Choose a renderer Render HTML, use a read-only Tiptap editor, or write a focused renderer for your interface. :: ::note Although JSON documents typically use the `body` field, some collections store their Tiptap JSON in a different field, such as `description` . :: ## Parse Tiptap documents Our Data Studio uses [Tiptap v2](https://v2.tiptap.dev/docs/editor/getting-started/overview){rel=""nofollow""} to create rich text documents. In addition to [common nodes and marks](https://v2.tiptap.dev/docs/editor/extensions/nodes){rel=""nofollow""}, it supports several custom extensions (referred to as custom nodes). Tiptap stores its content as a tree-like JSON structure. ```json { "body": { "type": "doc", "content": [ { "type": "paragraph", "content": [ { "type": "text", "text": "Hello world!" } ] } ] } } ``` When fetching these documents from the Onderwijsloket API, the following node and mark types may appear: **Nodes** - Paragraphs - [Heading 1 - 6](https://v2.tiptap.dev/docs/editor/extensions/nodes/heading){rel=""nofollow""} - [Divider](https://v2.tiptap.dev/docs/editor/extensions/nodes/horizontal-rule){rel=""nofollow""} - [Hard Break](https://v2.tiptap.dev/docs/editor/extensions/nodes/hard-break){rel=""nofollow""} - [Bullet list](https://v2.tiptap.dev/docs/editor/extensions/nodes/bullet-list){rel=""nofollow""} - [List item](https://v2.tiptap.dev/docs/editor/extensions/nodes/list-item){rel=""nofollow""} - [Table](https://v2.tiptap.dev/docs/editor/extensions/nodes/table){rel=""nofollow""} (including [headers](https://v2.tiptap.dev/docs/editor/extensions/nodes/table-header){rel=""nofollow""}, [rows](https://v2.tiptap.dev/docs/editor/extensions/nodes/table-row){rel=""nofollow""} and [cells](https://v2.tiptap.dev/docs/editor/extensions/nodes/table-cell){rel=""nofollow""}) - [Code Block](https://v2.tiptap.dev/docs/editor/extensions/nodes/code-block){rel=""nofollow""} **Marks** - [Link](https://v2.tiptap.dev/docs/editor/extensions/marks/link){rel=""nofollow""} - [Bold](https://v2.tiptap.dev/docs/editor/extensions/marks/bold){rel=""nofollow""} - [Italic](https://v2.tiptap.dev/docs/editor/extensions/marks/italic){rel=""nofollow""} - [Strikethrough](https://v2.tiptap.dev/docs/editor/extensions/marks/strike){rel=""nofollow""} - [Subscript](https://v2.tiptap.dev/docs/editor/extensions/marks/subscript){rel=""nofollow""} - [Superscript](https://v2.tiptap.dev/docs/editor/extensions/marks/superscript){rel=""nofollow""} When writing a renderer or processor, ensure your implementation handles these node types. Tiptap provides [utilities for working with documents](https://v2.tiptap.dev/docs/editor/api/utilities){rel=""nofollow""}, including PHP helpers. Example usage: ::code-collapse ```typescript // Rendering a simple document as HTML import { type JSONContent, generateText } from "@tiptap/core"; import { generateHTML } from "@tiptap/html"; // Import extensions import Blockquote from "@tiptap/extension-blockquote"; import Bold from "@tiptap/extension-bold"; import BulletList from "@tiptap/extension-bullet-list"; import Code from "@tiptap/extension-code"; import CodeBlock from "@tiptap/extension-code-block"; import Document from "@tiptap/extension-document"; import HardBreak from "@tiptap/extension-hard-break"; import Heading from "@tiptap/extension-heading"; import HorizontalRule from "@tiptap/extension-horizontal-rule"; import Italic from "@tiptap/extension-italic"; import Link from "@tiptap/extension-link"; import ListItem from "@tiptap/extension-list-item"; import OrderedList from "@tiptap/extension-ordered-list"; import Paragraph from "@tiptap/extension-paragraph"; import Strike from "@tiptap/extension-strike"; import Subscript from "@tiptap/extension-subscript"; import Superscript from "@tiptap/extension-superscript"; import { Table } from "@tiptap/extension-table"; import TableCell from "@tiptap/extension-table-cell"; import TableHeader from "@tiptap/extension-table-header"; import TableRow from "@tiptap/extension-table-row"; import Text from "@tiptap/extension-text"; /** * Standard TipTap extensions for basic text formatting and structure. */ export const extensions = [ Document, Text, Paragraph, HardBreak, Heading, CodeBlock, BulletList, OrderedList, ListItem, Blockquote, HorizontalRule, Link, Bold, Italic, Strike, Code, Subscript, Superscript, Table, TableHeader, TableRow, TableCell ]; async function fetchBodyDocument(): JSONContent { // fetch data from API } const document = await fetchBodyDocument(); const html = generateHTML(document, extensions); const plainText = generateText(document, extensions); ``` :: ::callout{color="info" icon="i-lucide-package"} Most of these extensions are included in `@tiptap/starter-kit` , but installing them individually reduces bundle size. :: ::callout{color="warning" icon="i-lucide-triangle-alert"} When installing `@tiptap` dependencies, always use a v2 release. Compatibility with v3 is not guaranteed (though it will likely work in most cases). :: ## Resolve custom nodes Our content documents include several custom nodes that allow us to embed structured information. Custom nodes fall into three categories: - Relation block - Relation inline block - Relation mark Currently, only block-level custom nodes and inline blocks are in use; no custom marks are implemented beyond Tiptap’s defaults. Each custom node is called a *relation* because its data is stored in its own collection, making it a related resource to the document containing the Tiptap content. These relationships are not stored in the JSON document, but in the `editor_nodes` field. This field is of type *many-to-any*. The JSON document only stores the junction items of these *many-to-any* relations (see examples below). The following custom nodes are available: | Node type | Category | | ----------------------- | --------------------- | | `buttons` | relation block | | `callouts` | relation block | | `images` | relation block | | `content_lists` | relation block | | `related_content_lists` | relation block | | `mediaplayers` | relation block | | `mentions` | relation inline block | Descriptions and data structure examples for each custom node are provided below. ::tabs :::tabs-item{icon="i-lucide-mouse-pointer-click" label="Buttons"} *A simple button component. Can have several props for styling.* Node as stored in the content document tree: ```json { "type": "relation-block", "attrs": { "id": "5689a87a-f2e8-4496-a63d-e5d359213305", "junction": "articles_editor_nodes", "collection": "buttons" } } ``` Type definition of the related `buttons` collection: ::::code-collapse ```typescript import { type User } from "@directus/types"; interface Button { /** * uuid */ id: string; /** * Color variant of the button */ color: "primary" | "secondary" | "tertiary" | null; /** * Iconify icon formatted as `{library}:{icon-name}` (e.g. `mdi:home`) * * Possible library values: * - mdi * - heroicons * - bxl * - material-symbols */ icon: string | null; /** * Position of the icon within the button */ icon_position: "leading" | "trailing" | null; /** * Whether the button links to an internal or external location */ internal: boolean; /** * URL or internal path the button links to */ to: string; /** * Text to display on the button */ label: string; /** * Style variant of the button */ variant: "solid" | "soft" | "subtle" | "outline" | "ghost" | "link"; /** * Size variant of the button */ size: "xs" | "sm" | "md" | "lg" | "xl"; /** * timestamp */ date_created: string | null; /** * timestamp */ date_updated: string | null; /** * User who created the item. */ user_created: User | User["id"] | null; /** * User who last updated the item. */ user_updated: User | User["id"] | null; } ``` :::: ::: :::tabs-item{icon="i-lucide-message-square-warning" label="Callouts"} *Components to highlight certain content within a semantic context. Callouts are unique in that they contain their own nested content documents.* Node as stored in the content document tree: ```json { "type": "relation-block", "attrs": { "id": "416a3276-068e-4d02-8737-fcd6fa73e03d", "junction": "articles_editor_nodes", "collection": "callouts" } } ``` Type definition of the related `callouts` collection: ::::code-collapse ```typescript import type { User } from "@directus/types"; import type { JSONContent } from "@tiptap/core"; interface Callout { /** * UUID of the callout. */ id: string; /** * Title displayed at the top of the callout. */ title: string | null; /** * Color variant of the callout. */ color: "primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "neutral"; /** * Rich text description stored as a Tiptap JSON document. */ description: JSONContent | null; /** * Whether the callout can be dismissed by the user. */ dismissable: boolean | null; /** * Parsed Tiptap editor nodes for the callout description. * These nodes are Many-to-Any junction items. */ editor_nodes: CalloutsEditorNode[] | null; /** * Icon name in Iconify format. */ icon: string | null; /** * Variant of the callout appearance. */ variant: "solid" | "soft" | "outline" | "subtle" | null; /** * List of button actions associated with the callout. */ actions: | { label: string | null; internal: boolean; to: string | null; variant: "solid" | "soft" | "outline" | "subtle" | null; }[] | null; /** * User who created the item. */ user_created: User | User["id"] | null; /** * User who last updated the item. */ user_updated: User | User["id"] | null; /** * Timestamp indicating when the item was created. */ date_created: string | null; /** * Timestamp indicating when the item was last updated. */ date_updated: string | null; } interface CalloutsEditorNode { id: string; collection: string | null; callouts_id: Callout | Callout["id"] | null; item: Mention | Mention["id"] | null; // See Mentions } ``` :::: ::: :::tabs-item{icon="i-lucide-image" label="Images"} *An image component.* Node as stored in the content document tree: ```json { "type": "relation-block", "attrs": { "id": "3d0e3bf1-9ea3-47be-9dba-5a3b939ffcca", "junction": "articles_editor_nodes", "collection": "images" } } ``` Type definition of the related `images` collection: ::::code-collapse ```typescript import type { User, File } from "@directus/types"; interface Image { /** * UUID of the image relation. */ id: string; /** * Alternative text describing the image. */ alt_text: string | null; /** * Whether the image should span the full content width. */ full_width: boolean; /** * Reference to the uploaded image file. */ image: File | File["id"] | null; /** * Maximum display width in pixels. Only used if full_width is false. */ max_width: number | null; /** * User who created the item. */ user_created: User | User["id"] | null; /** * User who last updated the item. */ user_updated: User | User["id"] | null; /** * Timestamp indicating when the item was created. */ date_created: string | null; /** * Timestamp indicating when the item was last updated. */ date_updated: string | null; } ``` :::: ::: :::tabs-item{icon="i-lucide-list" label="Content lists"} *A component showing customisable and actionable lists. Contains a many-to-one relation to the `content_list_items` collection.* Node as stored in the content document tree: ```json { "type": "relation-block", "attrs": { "id": "036e6c31-9372-4bce-bd52-20e9f157bdc4", "junction": "articles_editor_nodes", "collection": "content_lists" } } ``` Type definition of the related `content_lists` collection: ::::code-collapse ```typescript import type { User, File } from "@directus/types"; interface ContentList { /** * UUID of the content list. */ id: string; /** * Items belonging to the content list. */ items: ContentListItem[] | null; /** * User who created the item. */ user_created: User | User["id"] | null; /** * User who last updated the item. */ user_updated: User | User["id"] | null; /** * Timestamp indicating when the item was created. */ date_created: string | null; /** * Timestamp indicating when the item was last updated. */ date_updated: string | null; } interface ContentListItem { /** * UUID of the list item. */ id: string; /** * Title of the content list item. */ title: string | null; /** * Description text displayed for the item. */ description: string | null; /** * Icon name in Iconify format. */ icon: string | null; /** * Image file associated with the item. */ image: File | File["id"] | null; /** * Whether the link points to an internal location. */ internal: boolean; /** * URL or internal path for the item. */ link: string | null; /** * Type of media displayed with the item. */ mediatype: "none" | "icon" | "image" | null; /** * Sort order within the content list. */ sort: number | null; /** * Reference to the parent content list. */ content_lists: ContentList | ContentList["id"] | null; } ``` :::: ::: :::tabs-item{icon="i-lucide-list-tree" label="Related content lists"} *A component showing a list of content from other collections in the system. It contains a many-to-any `items` field that holds the junction to related content items. The following related collections are currently supported; more may be added, so make your implementation forward-compatible:* - `articles` - `testimonials` - `videos` - `podcast_episodes` - `podcast_shows` - `sectors` - `programs` - `educational_institutions` Node as stored in the content document tree: ```json { "type": "relation-block", "attrs": { "id": "fc43e135-5c84-4a41-836a-e066cca08c58", "junction": "articles_editor_nodes", "collection": "related_content_lists" } } ``` Type definition of the related `related_content_lists` collection: ::::code-collapse ```typescript import type { User } from "@directus/types"; interface RelatedContentList { /** * UUID of the related content list. */ id: string; /** * Items belonging to this related content list. */ items: RelatedContentListsItem[] | null; /** * User who created the item. */ user_created: User | User["id"] | null; /** * User who last updated the item. */ user_updated: User | User["id"] | null; /** * Timestamp indicating when the item was created. */ date_created: string | null; /** * Timestamp indicating when the item was last updated. */ date_updated: string | null; } /** Many-to-any junction item */ export interface RelatedContentListsItem { /** * Identifier of the related content list item. */ id: number; /** * Name of the collection the related item belongs to. */ collection: string | null; /** * Reference to the related item in its respective collection. * See Data model documentation for more info on these types */ item: | Article | Article["id"] | Testimonial | Testimonial["id"] | Video | Video["id"] | PodcastEpisode | PodcastEpisode["id"] | PodcastShow | PodcastShow["id"] | Sector | Sector["id"] | Program | Program["id"] | EducationalInstitution | EducationalInstitution["id"] | RegionalEducationDesk | RegionalEducationDesk["id"] | null; /** * Reference to the parent related content list. */ related_content_lists_id: RelatedContentList | RelatedContentList["id"] | null; /** * Sort order within the related content list. */ sort: number | null; } ``` :::: ::: :::tabs-item{icon="i-lucide-play" label="Mediaplayers"} *A mediaplayer component. Can be used to play either video or audio from a Cloudinary resource.* Node as stored in the content document tree: ```json { "type": "relation-block", "attrs": { "id": "ff94c5cf-2ed2-4378-86d6-a90bb5108a53", "junction": "articles_editor_nodes", "collection": "mediaplayers" } } ``` Type definition of the related `mediaplayers` collection: ::::code-collapse ```typescript import type { User, File } from "@directus/types"; interface MediaplayerChapter { /** * Display label of the chapter. */ label: string; /** * Start time of the chapter in seconds. */ time: number; } interface Mediaplayer { /** * UUID of the mediaplayer item. */ id: string; /** * Title of the media item. */ title: string; /** * Artist name. */ artist: string; /** * Whether the media element should span the full content width. */ full_width: boolean; /** * Maximum display width in pixels. Only used if full_width is false. */ max_width: number | null; /** * Type of media. */ type: "video" | "audio"; /** * Audio source configuration (audio only). */ audio: { service: "directus"; // Other services are not supported currently source: File["id"]; } | null; /** * Video source configuration (video only). */ video: { service: "directus"; // Other services are not supported currently id: File["id"]; } | null; /** * Artwork image for audio files. */ artwork: File | File["id"] | null; /** * Chapter list for video files. */ chapters: MediaplayerChapter[] | null; /** * User who created the item. */ user_created: User | User["id"] | null; /** * User who last updated the item. */ user_updated: User | User["id"] | null; /** * Timestamp indicating when the item was created. */ date_created: string | null; /** * Timestamp indicating when the item was last updated. */ date_updated: string | null; } ``` :::: ::: :::tabs-item{icon="i-lucide-at-sign" label="Mentions"} *An inline mention-like reference to another content item in the system. Mentions prevent the need for static `/path` references when using internal links. The following related collections can currently be mentioned; more may be added, so make your implementation forward-compatible:* - `articles` In contrast to *relation block* nodes, a relation inline block is not necessarily a top-level node; it is usually a child of a *paragraph* node: ::::code-collapse ```json { "type": "paragraph", "content": [ { "type": "text", "text": "An " }, { "type": "text", "marks": [ { "type": "italic" } ], "text": "inline" }, { "type": "text", "text": " " }, { "type": "relation-inline-block", "attrs": { "id": "e6f88b38-05b4-4c29-bf77-9267b4e182b4", "junction": "articles_editor_nodes", "collection": "mentions" } }, { "type": "text", "text": " block." } ] } ``` :::: Type definition of the related `mentions` collection: ::::code-collapse ```typescript import { User } from "@directus/types"; interface Mention { /** * UUID of the mention. */ id: string; /** * Label inserted into the text. If empty, use the referenced item's title. */ title: string | null; /** * Referenced item for this mention. Only one item is allowed. * Directus does not support one-to-any relationships so the * related items are stored in an array. * * Should only have one item in the array, but in case of * multiple items, only use the first one. */ item: MentionsItem[] | null; /** * User who created the item. */ user_created: User | User["id"] | null; /** * User who last updated the item. */ user_updated: User | User["id"] | null; /** * Timestamp indicating when the item was created. */ date_created: string | null; /** * Timestamp indicating when the item was last updated. */ date_updated: string | null; } export interface MentionsItem { /** * Identifier of the mention item. */ id: number; /** * Name of the referenced collection. */ collection: string | null; /** * Referenced item within the collection. * Currently only articles are supported. */ item: Article | Article["id"] | null; /** * Reference to the parent mention. */ mentions_id: Mention | Mention["id"] | null; } ``` :::: ::: :: ## Fetch and inject relational data The document JSON contains junction references for custom nodes, not their related item data. The related records remain independently updateable in `editor_nodes`. To resolve these relations, the referenced items are stored in the `editor_nodes` field and can be fetched alongside the document. The following example demonstrates how to fetch each custom node in a type-safe way using the Directus SDK: ::code-collapse ```typescript import { createDirectus, rest, staticToken, readItems, type QueryFields } from "@directus/sdk"; const API_TOKEN = "my-static-token"; const DIRECTUS_URL = "https://content.onderwijsloket.com"; // Type helper for field keys in Directus queries import type { QueryFields } from "@directus/sdk"; // Import Directus schema types import type { Schema, // Full Directus schema // Node types Button, Callout, Image, Mediaplayer, ContentList, Mention, RelatedContentList, // Related item types Article, Testimonial, Video, PodcastEpisode, PodcastShow, Sector, Program, EducationalInstitution, RegionalEducationDesk } from "#schema"; /** * Fields to fetch for related content items. Used by both the Mention block * and the Related Content List block. */ const relatedArticles = [ "id", "title", "path", "slug", "description", "date_created" ] satisfies QueryFields; const relatedTestimonials = [ "id", "title", "path", "slug", "description", "date_created", { profiles: [{ profiles_id: ["image"] }] } ] satisfies QueryFields; const relatedVideos = [ "id", "title", "path", "slug", "video", "date_created" ] satisfies QueryFields; const relatedPodcastEpisodes = [ "id", "title", "path", "slug", "audio", "date_created", { show: ["artwork"] } ] satisfies QueryFields; const relatedPodcastShow = [ "id", "title", "path", "slug", "tagline", "artwork", "date_created" ] satisfies QueryFields; const relatedSectors = ["id", "title", "slug", "description", "date_created"] satisfies QueryFields< Schema, Sector >; const relatedPrograms = [ "id", "title", "slug", "path", "date_created", { educational_institutions: [{ educational_institutions_id: ["logo"] }] } ] satisfies QueryFields; const relatedEducationalInstitutions = [ "id", "title", "slug", "path", "logo", "date_created" ] satisfies QueryFields; const relatedRegionalEducationDesks = [ "id", "title", "slug", "path", "logo", "date_created" ] satisfies QueryFields; const mentionedCollections = { articles: relatedArticles }; const relatedContent = { articles: relatedArticles, testimonials: relatedTestimonials, videos: relatedVideos, podcast_episodes: relatedPodcastEpisodes, podcast_shows: relatedPodcastShow, sectors: relatedSectors, programs: relatedPrograms, educational_institutions: relatedEducationalInstitutions, regional_education_desks: relatedRegionalEducationDesks }; /** * List fields to fetch for different custom nodes */ const mentions: QueryFields = [ "id", "title", { item: [ "id", "collection", { item: mentionedCollections } ] } ]; const buttons: QueryFields = [ "id", "label", "icon", "icon_position", "color", "size", "variant", "to", "internal" ]; const callouts: QueryFields = [ "id", "title", "icon", "dismissable", "color", "actions", "variant", "description", // Notice that callouts can also have editor nodes inside them { editor_nodes: [ "id", "collection", { item: { mentions } } ] } ]; const images: QueryFields = [ "id", "alt_text", "max_width", "full_width", { image: ["id", "width", "height"] } ]; const mediaplayers: QueryFields = [ "id", "title", "artist", "type", "audio", "video", "artwork", "chapters", "full_width", "max_width" ]; const content_lists: QueryFields = [ "id", { items: ["id", "title", "description", "mediatype", "image", "icon", "internal", "link"] } ]; const related_content_lists: QueryFields = [ "id", { items: [ "collection", { item: relatedContent } ] } ]; /** * All available custom nodes that can be rendered in the ContentRenderer */ const customNodes = { buttons, callouts, images, mediaplayers, content_lists, related_content_lists, mentions }; const editorNodeFields = [ "collection", "id", { item: customNodes } ] as const; // Create a Directus client instance const directus = createDirectus(DIRECTUS_URL).with(staticToken(API_TOKEN)).with(rest()); // Example: Fetch articles with editor nodes including custom fields const response = await directus.request( readItems("articles", { fields: [ "id", "body", { editor_nodes: editorNodeFields } ], limit: 1 }) ); ``` :: ::callout{color="primary" icon="i-lucide-code-xml"} You can also find all editor node definitions in the [code snippets repository](https://github.com/onderwijsin/onderwijsloket-examples/blob/main/src/editor-nodes.ts){rel=""nofollow""} . :: This query returns the document structure referencing relational nodes in `body`, alongside the corresponding relational records in `editor_nodes`. Each relational node includes its data as a sibling rather than inline within the document. ### Injecting relational data into the JSON document Merge `editor_nodes` into the document to create one renderable object. The operation must be recursive because a relation can contain a nested document. ::code-collapse ```typescript import type { JSONContent } from "@tiptap/core"; import { generateText } from "@tiptap/core"; import Text from "@tiptap/extension-text"; import Heading from "@tiptap/extension-heading"; import Document from "@tiptap/extension-document"; import Link from "@tiptap/extension-link"; import Bold from "@tiptap/extension-bold"; import Italic from "@tiptap/extension-italic"; import Strike from "@tiptap/extension-strike"; import Code from "@tiptap/extension-code"; import type { ArticlesEditorNode // Or whatever collection you are currently working with } from "#schema"; type EditorNode = Record; /** Maximum recursion depth safeguard to prevent infinite loops */ const MAX_DEPTH = 5; /** List of Tiptap node types that represent relations */ const RELATION_NODE_TYPES = ["relation-block", "relation-inline-block"]; /** * Checks if a value is a valid Tiptap document */ const isDoc = (value: unknown): value is JSONContent => !!value && typeof value === "object" && (value as { type: string }).type === "doc"; /** * Deep clone helper that works across all browsers * Falls back to JSON parse/stringify if structuredClone is unavailable */ const deepClone = (obj: T): T => { if (typeof structuredClone !== "undefined") { return structuredClone(obj); } return JSON.parse(JSON.stringify(obj)) as T; }; /** * Converts a given string into a URL-friendly slug. * * This function normalizes the input string by removing secondarys, diacritics, * and special characters. It also converts the string to lowercase, trims * whitespace, replaces spaces with dashes, and ensures there are no consecutive dashes. * * @param text - The input string to be slugified. * @returns A slugified version of the input string. */ function slugify(text: string): string { return text .toString() .normalize("NFD") // Normalize secondarys .replace(/[\u0300-\u036f]/g, "") // Remove diacritics .toLowerCase() .trim() .replace(/[^a-z0-9 -]/g, "") // Remove non-alphanumeric characters (except spaces) .replace(/\s+/g, "-") // Replace spaces with dashes .replace(/-+/g, "-"); // Remove consecutive dashes } /** * Injects related `item` data into a Tiptap JSON document. * * This function resolves "relation-block" and "relation-inline-block" nodes * by attaching their corresponding relational `data` (from `EditorNode[]`). * * It also supports nested structures: * - If a related item contains its own Tiptap document (e.g. which is the case * for callouts with `editor_nodes`), the function recurses into that document. * - If that related item also includes nested `editor_nodes`, these are added * to the data pool for deeper lookups. * * Additionally generates IDs for heading nodes for navigation purposes (can be opted * out of). * * A global recursion depth safeguard (`MAX_DEPTH`) prevents runaway loops. * * @param data - The list of available relational nodes * @param document - The Tiptap JSON document to process * @param primaryKeyField - The field used to match relation IDs (defaults to "id") * @param itemField - The field inside each node containing the relational payload (defaults to "item") * @param depth - Current recursion depth (internal use) * @param generateHeadingIds - Whether we should assign slug IDs to headings */ const injectData = ( data: EditorNode[], document?: JSONContent | null, primaryKeyField = "id", itemField = "item", depth = 0, generateHeadingIds = true ): JSONContent | null => { /** Internal recursive walker */ function walk( node: JSONContent | null, availableData: EditorNode[], nodeDepth: number, docDepth: number ): JSONContent | null { if (!node) return null; // Stop runaway recursion if (docDepth > MAX_DEPTH) { console.warn( `[injectData] Maximum document recursion depth (${MAX_DEPTH}) reached. Skipping deeper injection.`, { type: node.type, nodeDepth, docDepth, nodeAttrs: node.attrs ?? null } ); return node; } /** ------------------------- * Relation block / inline block * -------------------------- */ if (node.type && RELATION_NODE_TYPES.includes(node.type) && node.attrs?.id) { const related = availableData.find((n) => n[primaryKeyField] === node.attrs!.id); if (related?.[itemField]) { const itemData = deepClone(related[itemField]) as Record; // Handle nested docs inside related items for (const [key, value] of Object.entries(itemData)) { if (isDoc(value)) { const nestedData = Array.isArray(itemData.editor_nodes) ? [...availableData, ...(itemData.editor_nodes as EditorNode[])] : availableData; itemData[key] = injectData( nestedData, value, primaryKeyField, itemField, docDepth + 1, generateHeadingIds ); } } node.attrs.data = itemData; } } /** ------------------------- * Heading slugs * -------------------------- */ if (node.type === "heading" && !node.attrs?.id && generateHeadingIds) { const text = generateText(node, [Document, Heading, Text, Link, Bold, Italic, Strike, Code]); node.attrs = { id: slugify(text), plainText: text, ...node.attrs }; } /** ------------------------- * Relation marks * -------------------------- */ if (node.type === "text" && Array.isArray(node.marks)) { node.marks = node.marks.map((mark) => { if (mark.type !== "relation-mark" || !mark.attrs?.id) return mark; const related = availableData.find((n) => n[primaryKeyField] === mark.attrs!.id); if (related?.[itemField]) { mark.attrs.data = deepClone(related[itemField]); } return mark; }); } /** ------------------------- * Children * -------------------------- */ if (Array.isArray(node.content)) { // IMPORTANT: propagate the SAME availableData from this level node.content = node.content .map((child) => walk(child, availableData, nodeDepth + 1, docDepth)) .filter(Boolean) as JSONContent[]; } return node; } return walk(document ?? null, data, 0, depth); }; // Example usage with the data fetched in previous snippet const data = injectData(response.editor_nodes as ArticlesEditorNode[], response.body); ``` :: You now have one data object containing the full document and its resolved relational data. ::callout{color="primary" icon="i-lucide-code-xml"} You can also find this function, along with related examples, in the [code snippets repository](https://github.com/onderwijsin/onderwijsloket-examples/blob/main/src/inject-data.ts){rel=""nofollow""} . :: ### Handle stale junctions A content document may reference nodes whose junction IDs are no longer present in the `editor_nodes` field. This typically occurs when a related item is deleted and the backend does not properly sanitize the content document. To prevent issues in these situations, filter out any custom nodes in the document that no longer have a corresponding entry in `editor_nodes`. ## Render in a web application Rendering content documents in a web application can be done in several ways, depending on your framework and how much control you need over the output. The examples below show common approaches and how to integrate custom nodes using `callouts` as an example. ::tabs :::tabs-item{icon="i-lucide-code" label="As HTML"} #### Generate HTML To output the document as static HTML, you can extend the earlier example using `generateHTML` and register any custom nodes alongside the base Tiptap extensions. ::::code-collapse ```typescript import { Node, generateHTML, type JSONContent } from "@tiptap/core"; import StarterKit from "@tiptap/starter-kit"; import { CalloutNode } from "./CalloutNode"; /** * Callout node renders a styled container representing a Callout relation block. * The node carries metadata (color, variant, icon, dismissable, etc.) * resolved from the related `callouts` collection in Directus. */ export const CalloutNode = Node.create({ name: "callout", group: "block", content: "block*", /** * Attribute definitions derived from the Callout schema. */ addAttributes() { return { id: { default: null }, color: { default: null }, variant: { default: null }, icon: { default: null }, dismissable: { default: null }, title: { default: null } }; }, /** * Render the Callout as HTML. * Attributes allow styling and structural interpretation in your renderer. */ renderHTML({ HTMLAttributes }) { return [ "aside", { class: `callout ${HTMLAttributes.color ?? ""} ${HTMLAttributes.variant ?? ""}`, "data-id": HTMLAttributes.id ?? undefined, "data-icon": HTMLAttributes.icon ?? undefined, "data-title": HTMLAttributes.title ?? undefined, "data-dismissable": HTMLAttributes.dismissable ?? undefined }, 0 ]; }, /** * Parse HTML back into a Callout node. */ parseHTML() { return [ { tag: "aside.callout" } ]; } }); /** * Convert JSON document to HTML including custom nodes. */ export function toHtml(doc: JSONContent): string { return generateHTML(doc, [ StarterKit, // Prefer importing individual extensions, not the StarterKit CalloutNode ]); } ``` :::: ::: :::tabs-item{icon="i-lucide-pencil" label="As Editor"} #### Create a Tiptap editor For component-level control or custom rendering logic, you can initialize a Tiptap editor. This adds flexibility but also more runtime overhead. The example below uses React, though Tiptap supports [many frameworks](https://v2.tiptap.dev/docs/editor/getting-started/install){rel=""nofollow""}. ::::code-collapse ```typescript import React from 'react' import { EditorContent, useEditor } from '@tiptap/react' import StarterKit from '@tiptap/starter-kit' import { NodeViewWrapper, NodeViewContent } from '@tiptap/react' import { CalloutNode } from './CalloutNode' /** * React component for displaying a Callout node in read-only mode. */ export function CalloutComponent({ node }: any) { const { id, color, variant, icon, dismissable, title } = node.attrs return ( {title &&
{title}
} {icon && (
{/* Replace this with your Iconify renderer */} {icon}
)} {dismissable && ( )}
) } /** * Register the node so Tiptap renders it using React. */ const CalloutReactNode = CalloutNode.extend({ addNodeView() { return ({ node }) => { return React.createElement(CalloutComponent, { node }) } }, }) /** * Read-only renderer for Tiptap documents including custom nodes. */ export function CalloutRenderer({ doc }: { doc: any }) { const editor = useEditor({ editable: false, // 👈 read-only mode content: doc, extensions: [ StarterKit.configure({ editable: false, }), CalloutReactNode, ], }) return } ``` :::: ::: :::tabs-item{icon="i-lucide-wrench" label="Bring your own"} #### Write your own renderer If you want full control over serialization and rendering without depending on Tiptap’s runtime, you can implement your own renderer. The structured nature of content documents makes this approach straightforward. The following Vue example provides a minimal starting point: ::::code-collapse ```typescript ``` :::: ::: :::tabs-item{icon="i-lucide-boxes" label="3rd party tools"} #### Find a suitable tool Because Tiptap is widely adopted, many open-source libraries exist that extend or build on top of it. These can simplify rendering, collaboration, or custom node handling depending on your application. ::: :: ## Support the collections you use Content documents appear in multiple collections, and not every document uses the same set of nodes. If you work across multiple collections, it is usually easiest to implement a single renderer that supports all node types you expect to encounter. If you only work with one or two collections, you can limit your renderer to the nodes used in those specific documents. The following table outlines which nodes appear in which fields. | **Collection** | **Field** | **Nodes** | | ----------------------------- | ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `articles` | `body` | **Nodes:** paragraph, h2, h3, h4, horizontalRule, bulletList, ListItem, OrderedList, Table **Marks:** bold, italic, strike, subscript, superscript, link **Custom**: buttons, callouts, content\_lists, related\_content\_lists, images, mediaplayers, mentions | | `callouts` | `description` | **Nodes:** paragraph, bulletList, ListItem, OrderedList **Marks:** bold, italic, link **Custom**: mentions | | `educational_` `institutions` | `description` | **Nodes:** paragraph, bulletList, ListItem, OrderedList **Marks:** bold, italic, subscript, superscript, link | | `faqs` | `answer` | **Nodes:** paragraph, bulletList, ListItem, OrderedList **Marks:** bold, italic, link | | `podcast_episodes` | `body` | **Nodes:** paragraph, h3, h4, bulletList, ListItem, OrderedList **Marks:** bold, italic, link | | `podcast_shows` | `description` | **Nodes:** paragraph **Marks:** bold, italic, link | | `profiles` | `body` | **Nodes:** paragraph, h3, bulletList, ListItem, OrderedList **Marks:** bold, italic, subscript, superscript, link | | `program_forms` | `description` | **Nodes:** paragraph, h2, h3, h4, h5, h6, bulletList, ListItem, OrderedList **Marks:** bold, italic, subscript, superscript, link | | `regional_` `education_desks` | `consultation_` `service_description` | **Nodes:** paragraph, h1, h2, h3, h4, h5, h6, horizontalRule, bulletList, ListItem, OrderedList, Table **Marks:** bold, italic, strike, subscript, superscript, link | | `regional_` `education_desks` | `description` | **Nodes:** paragraph, h3, h4, h5, bulletList, ListItem, OrderedList **Marks:** bold, italic | | `route_steps` | `body` | **Nodes:** paragraph, h3, h4, h5, bulletList, ListItem, OrderedList **Marks:** bold, italic, link | | `team_members` | `description` | **Nodes:** paragraph, bulletList, ListItem, OrderedList **Marks:** bold, italic, subscript, superscript, link | | `testimonials` | `body` | **Nodes:** paragraph, h2, h3, h4, h5, h6, horizontalRule, bulletList, ListItem, OrderedList, Table **Marks:** bold, italic, subscript, superscript, link **Custom**: buttons, callouts, content\_lists, related\_content\_lists, images, mediaplayers, mentions | | `themas` | `body` | **Nodes:** paragraph, h3, h4, h5, h6, bulletList, ListItem, OrderedList **Marks:** bold, italic, subscript, superscript, link | | `videos` | `body` | **Nodes:** paragraph, h3, h4, bulletList, ListItem, OrderedList **Marks:** bold, italic, link | ## Plan for forwards compatibility New core or custom nodes may be added in the future. If your renderer does not handle unknown node types gracefully, your application may break. Consider implementing one of these safeguards: - Filter unsupported nodes from the document. - Display a placeholder or warning when an unsupported node appears. - Fallback to rendering unsupported nodes as plain text by inspecting common properties such as `text` or `content`. Choose the strategy that best fits your application and tolerance for unexpected content. # Permissions Policies determine which parts of the system your account can access. Every account has a role and one or more policies; request an additional policy when your integration needs a protected dataset. ## Use the base policies All users with API access receive the following base policies: - **Read and update self** — Allows reading and updating your own profile. - **Content read** — Grants read access to published items in the content, media, and global category collections. - **Read published media** — Allows retrieval of media assets with a `publication_date` in the past. - **Asset read** — Grants read access to `directus_files` and their metadata. ## Request additional dataset policies Additional policies may be assigned to extend access to specific data sets: - **Navigator** — Read access to `programs`, `educational_institutions`, `regional_education_desks`, `locations`, and `areas` where `vendor = 'onderwijsloket'`. - **HOVI** — Read access to `programs`, `educational_institutions`, and `locations` where `vendor = 'hovi'`. - **KiesMBO** — Read access to `programs`, `educational_institutions`, and `locations` where `vendor = 'kiesmbo'`. - **Scholen op de kaart** — Read access to `schools` and `locations` where `vendor = 'sodk'`. - **Read stats** — Read access to anonymous usage statistics for Onderwijsloket services. - **Algolia token** — Grants access to the `algolia_token` field on the user account. ## Check eligibility and request access Additional access can be requested by contacting us. Eligibility depends on the policy: - **Navigator** — Available to anyone at no cost; a description of intended use is required. - **HOVI** — Requires a signed contract with the vendor. - **KiesMBO** — Requires a signed contract with the vendor. - **Scholen op de kaart** — Requires a signed contract with the vendor. - **Read stats** — Available to anyone at no cost; a description of intended use is required. - **Algolia token** — Available to anyone for a prepaid fee based on expected usage. If actual usage exceeds the estimate, additional charges apply. Pricing follows Algolia’s model at €0.50 per 1,000 requests. ::u-button --- icon: i-lucide-mail to: mailto:remi@onderwijsin.nl?subject=Requesting+Additional+Access --- Contact us :: ::warning The policies described in this article, including any associated fees, may change over time. We may update access requirements, adjust pricing, or introduce new conditions as our services evolve. Users are responsible for reviewing the most current information, and changes take effect once published. :: # Cloudinary Cloudinary delivers and transforms images, audio, video, and documents. Every public API asset is stored there, so you can build an optimised delivery URL directly from its Directus ID. Access to all assets is public. If you know the ID assigned by Directus, you can construct the Cloudinary URL and request the file without authentication. ::warning{title="Public delivery"} Cloudinary asset delivery does not require authentication. Do not use asset identifiers as a way to protect sensitive files. :: :embedded-video{src="https://www.youtube.com/embed/7qujZvoaxS4" title="Cloudinary asset delivery walkthrough"} ## Construct an asset URL All assets use the following structure: - **Cloud name:** `onderwijsin` - **Base folder:** `onderwijsloket-directus/production` - **Public ID format:** `onderwijsloket-directus/production/{ID assigned by Directus}` Use Cloudinary’s standard delivery URL format, without including a version segment: ```plaintext https://res.cloudinary.com/onderwijsin/{asset_type}/upload/{public_id} ``` Where: ::field-group :::field{name="asset_type" type="string"} Typically `image` , `video` , or `raw` for documents and other files. ::: :::field{name="public_id" type="string"} `onderwijsloket-directus/production/{ID assigned by Directus}` . ::: :: ## Apply common transformations Cloudinary supports on-the-fly transformations for images, video, and audio. Transformations are expressed as comma-separated parameters placed between the `upload/` segment and the public ID. Multiple transformations can be combined in a single request. Some basic examples are given below. ### Transform images - Resize and crop: :br`w_800,h_600,c_fill` - Automatic format and quality: :br`f_auto,q_auto` - Convert to WebP: :br`f_webp` ### Transform video - Resize: :br`w_1280` - Trim video: :br`so_3,du_5` - Convert format: :br`f_mp4` ### Transform audio - Convert to MP3: :br`f_mp3` - Set bitrate: :br`br_128k` - Set codec: :br`ac_aac` ## Choose an integration approach Cloudinary provides SDKs and integrations for many common frameworks. Typical integration patterns include: - Client-side rendering with URL-based transformations (React, Vue, Next.js). - Server-side helpers for building transformation URLs (Node.js, PHP, Python, Ruby). - Automatic optimization via framework plugins (Next.js Image component, Nuxt modules). - Media players that accept Cloudinary URLs directly for audio and video streaming. Since all assets are public and use predictable URLs, most integrations only require constructing the URL from the ID assigned by Directus and adding any desired transformations. ## Continue with Cloudinary documentation - [URL Structure and Delivery Types](https://cloudinary.com/documentation/image_transformations#transformation_url_syntax){rel=""nofollow""} - [Image Transformations](https://cloudinary.com/documentation/image_transformations){rel=""nofollow""} - [Video Transformations](https://cloudinary.com/documentation/video_manipulation_and_delivery){rel=""nofollow""} - [Audio Transformations](https://cloudinary.com/documentation/audio_transformations){rel=""nofollow""} - [SDKs](https://cloudinary.com/documentation/cloudinary_sdks){rel=""nofollow""} and [Framework](https://cloudinary.com/integrations){rel=""nofollow""} Integrations # Scheduling Links Visitors exploring a career in education can schedule a **free advice consultation** with an Onderwijsloket advisor. Advisors help them consider training routes, roles, qualifications, and regulations. Partners may integrate this scheduling functionality directly into their own websites using a **SavvyCal embed**. This allows visitors to schedule an advice conversation without leaving your website. ## Meet the integration requirements When integrating the Onderwijsloket scheduling tool on your website, please follow these guidelines. ::note{title="Prefer appointments over calls"} Our preference is for users to **schedule a conversation** rather than call directly. This allows us to help more people efficiently. :: Please ensure that the following conditions are met: - It must be **clear that the conversation takes place with the national Onderwijsloket**, not with the regional education desk. - Visitors should understand **what they can expect from an advice conversation**. - The **Onderwijsloket logo** must be shown when presenting this service. - The logo should link to [**https://onderwijsloket.com**](https://onderwijsloket.com){rel=""nofollow""}. ![Example integration by onderwijsloketrotterdam.nl](https://api.scalar.com/cdn/images/EjpR0Xf5EHAuTL3lAVpDX/bB6qxA7eihht6kYZfx1nS.png) Example integration by onderwijsloketrotterdam.nl ![Modal shown when a visitor requests more information](https://api.scalar.com/cdn/images/EjpR0Xf5EHAuTL3lAVpDX/m8C6pH0ojTJmFz3OYzTcq.png) Modal shown when a visitor requests more information. ## Embed the scheduler You can embed the scheduling tool using a small SavvyCal script. This script opens the appointment planner when a user clicks a button. Copy the following HTML snippet into your website and adapt the button styling to match your design. ::code-collapse ```html ``` :: ::warning{title="Set the regional desk name"} You **must update the regional desk name** in the code above. Replace `` with the name of your organization, for example `"Onderwijsloket Rotterdam"`. This allows us to track through which regional partner the appointment was scheduled. :: For more advanced integration options, refer to the SavvyCal documentation: ::u-button --- icon: i-lucide-book-open target: _blank to: https://docs.savvycal.com/article/6-embedding-links-on-your-website --- SavvyCal Documentation :: ## Reuse the suggested website copy To help partners integrate the service consistently, you may reuse the following content blocks. ```markdown ## Een onafhankelijk advies over jouw stap naar het onderwijs De adviseurs van [het landelijke Onderwijsloket](https://onderwijsloket.com) denken graag mee over jouw mogelijkheden in het onderwijs en de route daar naartoe. > plan een gratis adviesgesprek > Wat kun je van een advies verwachten? ``` ```markdown ## Wat kun je van een adviesgesprek verwachten? Tijdens een adviesgesprek met het Onderwijsloket denkt een adviseur met je mee over je mogelijke routes naar het onderwijs. Onze adviseurs geven jou graag een advies op maat. Of je nou wilt weten welke opleiding het best bij jou situatie en beoogde functie past, of voor welk type functies je in aanmerking komt; onze adviseurs helpen je graag verder. De adviseur belt je op een door jou gekozen moment om je ingestuurde vragen met je door te nemen. Een adviesgesprek met het Onderwijsloket duurt ongeveer 20 minuten. We vragen je bij het inplannen van het gesprek om wat informatie over jezelf met ons te delen, zoals het telefoonnummer waarop we je kunnen bereiken, informatie over je eerder afgeronde opleiding(en) en waar je het over zou willen hebben tijdens het gesprek. Ook sturen we je na het inplannen van het adviesgesprek alvast wat handige informatie toe, die je ter voorbereiding kunt doornemen. ### **Over het Onderwijsloket** Het landelijke Onderwijsloket is een informatie- en adviescentrum over _werken in het onderwijs_. Zij weten alles over routes, bevoegdheden, subsidies, de verschillende sectoren en functies, en andere algemene en praktische zaken om mee te wegen in je oriëntatie. `` is géén onderdeel van het Onderwijsloket, maar een samenwerkingspartner. ``` ## Download the media kit You can download our media code with logo files and images below. ::u-button --- icon: i-lucide-download target: _blank to: https://res.cloudinary.com/onderwijsin/raw/upload/v1737012819/onderwijsloket/kit/onderwijsloket_media_qilb62.zip --- Download Media Kit :: # MCP Server ## What is MCP? The Model Context Protocol (MCP) is a standard way for an AI application to discover and use external tools. Our public MCP server lets an AI agent look up the documentation and generated API reference while it helps you build an integration. The server is read-only. It does not expose your API token, modify Onderwijsloket data, or make API requests on your behalf. ## What can an agent do? The server is available at [`https://docs.onderwijsloket.com/mcp`](https://docs.onderwijsloket.com/mcp){rel=""nofollow""} over HTTP transport. Use the discovery tools first, then retrieve the specific reference entry you need: - **`list-api-tags`** lists the functional groups in the API reference. - **`get-api-tag`** retrieves one tag and its associated operation summaries. - **`list-api-operations`** lists documented HTTP operations. - **`get-api-operation`** retrieves one operation by method and path, including request and response details. - **`list-api-models`** lists the named API schemas. - **`get-api-model`** retrieves one schema and its fields. Each reference result includes a link to the corresponding page on this documentation site. This makes the MCP server useful for questions such as: - Which endpoint should I use to retrieve articles or programmes? - What fields and relationships does a model contain? - Which operations are grouped under authentication or search? - Where can I find the complete reference page for an endpoint? ## Connect an AI tool Most MCP-compatible tools ask for the server URL. Use `https://docs.onderwijsloket.com/mcp` and choose HTTP or streamable HTTP when the client offers a transport choice. ### Claude Code Register the remote server from the command line: ```bash claude mcp add --transport http onderwijsloket https://docs.onderwijsloket.com/mcp ``` ### Cursor Add the server to `.cursor/mcp.json` in your project: ```json [.cursor/mcp.json] { "mcpServers": { "onderwijsloket": { "type": "http", "url": "https://docs.onderwijsloket.com/mcp" } } } ``` ### Visual Studio Code and other clients Add an HTTP MCP server to the client configuration using this endpoint: ```json { "name": "onderwijsloket", "type": "http", "url": "https://docs.onderwijsloket.com/mcp" } ``` Configuration names and file locations differ between clients. Follow the client’s MCP setup instructions if it uses a different configuration shape. ## Use the server effectively Ask the agent to consult the MCP server before it invents an endpoint, field name, or response shape. For a broad question, ask it to list tags, operations, or models first. For a known endpoint or schema, ask it to retrieve the exact reference entry directly. The MCP server provides documentation context; it does not replace authentication. Your application still needs an API account, token, and the permissions required for the data you request. ::note{title="Keep credentials separate"} Never paste an Onderwijsloket API token into an MCP configuration. The public server only needs its own URL, and the MCP tools are read-only. :: ## Related resources - [LLMs.txt](https://docs.onderwijsloket.com/agents/llms-txt) provides documentation files that AI tools can ingest as context. - [Request API access](https://onderwijsloket.com/access-request){rel=""nofollow""} explains how to obtain an API account and token. - [API reference](https://docs.onderwijsloket.com/api-reference) contains the generated endpoint and schema pages. # LLMs.txt ## What is LLMs.txt? `llms.txt` is a convention for publishing documentation in a format that is easy for large language models to read. Instead of asking an AI tool to discover every page through a website, you can point it at a curated text file containing the important concepts, guides, and links. This is useful when an AI coding assistant needs reliable context about the Onderwijsloket API, data model, search service, media, or permissions. ## Available files The documentation site publishes two files: - [`/llms.txt`](https://docs.onderwijsloket.com/llms.txt){rel=""nofollow""} is the compact starting point. It contains the key guidance and links and is suitable for most tools. - [`/llms-full.txt`](https://docs.onderwijsloket.com/llms-full.txt){rel=""nofollow""} contains the complete generated documentation, including detailed guides and API reference pages. It is substantially larger. Start with `/llms.txt`. Use `/llms-full.txt` when the agent needs details from several parts of the documentation and its context window can handle the larger file. ## Add the documentation to an AI tool The exact workflow depends on the tool. In general, add the URL as documentation, web context, or a project reference, then ask the agent to use it when answering API questions. ### Cursor and Windsurf Use the tool’s documentation or web-context feature to add one of these URLs: ```text https://docs.onderwijsloket.com/llms.txt https://docs.onderwijsloket.com/llms-full.txt ``` You can also mention the URL directly in a prompt when you want the context for a single task. ### Other AI tools For an assistant that accepts URLs as context, include a short instruction such as: :prompt{description="Use https://docs.onderwijsloket.com/llms.txt as the source of truth for Onderwijsloket API endpoints, models, and integration guidance."} If the tool supports MCP, consider connecting the [Onderwijsloket MCP server](https://docs.onderwijsloket.com/agents/mcp-server) instead. MCP lets the agent discover only the reference entries it needs. ## Keep the source of truth clear The files are generated from the published documentation. They are a context aid, not an API credential and not a replacement for the live API response. Tell your agent to verify important details against the linked reference page and to account for your token’s permissions. Some datasets and services require additional access. When you ask an agent to write code, provide the intended use as well. For example, say whether you are retrieving articles, searching FAQs, building a programme finder, or working with media. ::tip{title="Use focused context first"} The compact file usually gives an agent enough orientation. Add individual documentation pages or use MCP when you need a precise endpoint, schema, or example. :: ## Related resources - [MCP Server](https://docs.onderwijsloket.com/agents/mcp-server) provides read-only, tool-based documentation discovery. - [Getting started](https://docs.onderwijsloket.com/getting-started) explains the available services and the first integration steps. # Skills ## What are agent skills? An agent skill is a reusable set of instructions and reference material that gives an AI coding agent deeper knowledge about a specific tool or workflow. Skills can help an agent choose the right library, follow its conventions, and produce code that is easier to maintain. They are especially useful when your integration combines the Onderwijsloket API with another platform. Install a skill in the coding-agent environment where you plan to use it. Then ask the agent to apply that skill when working with the relevant technology. ## Before you install Skills are executable instructions supplied by third parties. Review the repository, source, permissions, and installation instructions yourself before enabling one. We review these projects as recommendations, but we do not guarantee their safety, quality, or continued availability. You are responsible for deciding whether a skill is appropriate for your environment. Do not give a skill more credentials or filesystem access than it needs. Keep your Onderwijsloket API token in server-side configuration and never place it in a skill repository or prompt. ## Recommended skills The recommendations below cover technologies used by the Onderwijsloket platform and its integrations. ### Cloudinary Use these skills when your integration delivers or transforms public images, videos, audio, or documents through Cloudinary. Install the Cloudinary skill collection: ```bash npx skills add cloudinary-devs/skills ``` Recommended skills from the collection: - **`cloudinary-docs`** — look up Cloudinary implementation details and SDK usage. - **`cloudinary-transformations`** — construct and debug Cloudinary delivery and transformation URLs. Read the [Cloudinary guide](https://docs.onderwijsloket.com/misc/cloudinary) alongside the skill. It explains how Onderwijsloket asset IDs map to public Cloudinary URLs. ### Tiptap Use the Tiptap skill when you need to render or work with rich content stored as Tiptap JSON, including content documents and their relational nodes. Install it with: ```bash npx skills add ueberdosis/tiptap ``` - **`tiptap`** — helps integrate and work with the Tiptap rich-text editor and its extensions. The [content documents guide](https://docs.onderwijsloket.com/misc/content-documents) describes the Onderwijsloket-specific document shape and rendering considerations. ### Algolia InstantSearch Use the Algolia skill when you are building search interfaces against the Onderwijsloket search indexes. Install the Algolia skill collection: ```bash npx skills add algolia/skills ``` - **`instantsearch`** — helps build search interfaces with Algolia InstantSearch. The [search documentation](https://docs.onderwijsloket.com/search/setting-up-a-client) covers our application ID, permissions, indexes, and client setup. Algolia is a separate service and is not proxied through the Onderwijsloket API. ## No first-party skills yet We currently do not maintain first-party skills for the Onderwijsloket API or SDK. Use the [API documentation](https://docs.onderwijsloket.com) and [MCP server](https://docs.onderwijsloket.com/agents/mcp-server) as the authoritative integration context. If you build a custom skill for the Onderwijsloket API Platform, we would love to hear about it. [Send us feedback by email](mailto\:remi@onderwijsin.nl?subject=Onderwijsloket+agent+skill) and tell us what the skill covers and where people can find it. With your permission, we can add it to this list. # Dynamic Onderwijsloket API specification Dynamic Onderwijsloket API specification 1.20.1 This is a dynamically generated API specification for all publicly available endpoints in the current version of the API. If you are looking for available endpoints based on your assigned role, use the '/server/specs/oas' endpoint instead. Stichting Onderwijs in {rel=""nofollow""} {rel=""nofollow""} Production server for the Onderwijsloket API (v2) built with Directus # GET /auth/oauth GET /auth/oauth oauth List OAuth Providers List configured OAuth providers. Authentication Successful request public data Error: Unauthorized request error code message # GET /auth/oauth/{provider} GET /auth/oauth/{provider} oauthProvider Authenticated using an OAuth provider Start OAuth flow using the specified provider Authentication provider path Key of the activated OAuth provider. redirect query Where to redirect on successful login. :br If set the authentication details are set inside cookies otherwise a JSON is returned. Successful request public data token Error: Unauthorized request error code message # GET /items/applicant_activity GET /items/applicant\_activity readItemsApplicantActivity List Items List the applicant\_activity items. ApplicantActivity fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data applicant date\_created date\_updated id status time\_zone activity\_log scheduled\_events date\_created date\_updated id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/applicant_activity/{id} GET /items/applicant\_activity/{id} readSingleItemsApplicantActivity Retrieve an Item Retrieve a single applicant\_activity item by unique identifier. ApplicantActivity fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data applicant date\_created date\_updated id status time\_zone activity\_log scheduled\_events date\_created date\_updated id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/applicants GET /items/applicants readItemsApplicants List Items List the applicants items. Applicants fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated id status time\_zone activity\_log applicant date\_created date\_updated id scheduled\_events meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/applicants/{id} GET /items/applicants/{id} readSingleItemsApplicants Retrieve an Item Retrieve a single applicants item by unique identifier. Applicants fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated id status time\_zone activity\_log applicant date\_created date\_updated id scheduled\_events Error: Unauthorized request error code message Error: Not found. error code message # GET /items/areas GET /items/areas readItemsAreas List Items List the areas items. Areas fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/areas/{id} GET /items/areas/{id} readSingleItemsAreas Retrieve an Item Retrieve a single areas item by unique identifier. Areas fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies Error: Unauthorized request error code message Error: Not found. error code message # GET /items/articles GET /items/articles readItemsArticles List Items List the articles items. Articles fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/articles/{id} GET /items/articles/{id} readSingleItemsArticles Retrieve an Item Retrieve a single articles item by unique identifier. Articles fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id sort programs educational\_institutions\_id id programs\_id sort audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles Error: Unauthorized request error code message Error: Not found. error code message # GET /items/audiences GET /items/audiences readItemsAudiences List Items List the audiences items. Audiences fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/audiences/{id} GET /items/audiences/{id} readSingleItemsAudiences Retrieve an Item Retrieve a single audiences item by unique identifier. Audiences fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles Error: Unauthorized request error code message Error: Not found. error code message # GET /items/authors GET /items/authors readItemsAuthors List Items List the authors items. Authors fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url job\_title name status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id authors\_id id testimonials authors\_id id testimonials\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/authors/{id} GET /items/authors/{id} readSingleItemsAuthors Retrieve an Item Retrieve a single authors item by unique identifier. Authors fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url job\_title name status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks authors\_id id testimonials authors\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles Error: Unauthorized request error code message Error: Not found. error code message # GET /items/availabilities GET /items/availabilities readItemsAvailabilities List Items List the availabilities items. Availabilities fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/availabilities/{id} GET /items/availabilities/{id} readSingleItemsAvailabilities Retrieve an Item Retrieve a single availabilities item by unique identifier. Availabilities fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start Error: Unauthorized request error code message Error: Not found. error code message # GET /items/documents GET /items/documents readItemsDocuments List Items List the documents items. Documents fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data asset id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id documents\_id id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/documents/{id} GET /items/documents/{id} readSingleItemsDocuments Retrieve an Item Retrieve a single documents item by unique identifier. Documents fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data asset id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks documents\_id id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/educational_institutions GET /items/educational\_institutions readItemsEducationalInstitutions List Items List the educational\_institutions items. EducationalInstitutions fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id sort programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/educational_institutions/{id} GET /items/educational\_institutions/{id} readSingleItemsEducationalInstitutions Retrieve an Item Retrieve a single educational\_institutions item by unique identifier. EducationalInstitutions fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id sort programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort Error: Unauthorized request error code message Error: Not found. error code message # GET /items/faqs GET /items/faqs readItemsFaqs List Items List the faqs items. Faqs fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data answer date\_created date\_updated id question status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/faqs/{id} GET /items/faqs/{id} readSingleItemsFaqs Retrieve an Item Retrieve a single faqs item by unique identifier. Faqs fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data answer date\_created date\_updated id question status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks faqs\_id id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/locations GET /items/locations readItemsLocations List Items List the locations items. Locations fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/locations/{id} GET /items/locations/{id} readSingleItemsLocations Retrieve an Item Retrieve a single locations item by unique identifier. Locations fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects Error: Unauthorized request error code message Error: Not found. error code message # GET /items/mentions GET /items/mentions readItemsMentions List Items List the mentions items. Mentions fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/mentions/{id} GET /items/mentions/{id} readSingleItemsMentions Retrieve an Item Retrieve a single mentions item by unique identifier. Mentions fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/mentions_item GET /items/mentions\_item readItemsMentionsItem List Items List the mentions\_item items. MentionsItem fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data collection id item body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item related\_content\_lists\_id sort sectors articles\_id id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos topics faqs\_id id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles mentions\_id date\_created date\_updated id title user\_created user\_updated item meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/mentions_item/{id} GET /items/mentions\_item/{id} readSingleItemsMentionsItem Retrieve an Item Retrieve a single mentions\_item item by unique identifier. MentionsItem fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data collection id item body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area cities\_municipalities consultation\_service\_description consultation\_service\_url content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo orientation\_activity\_types path phone phone\_availability privacy\_policy regions reviewed\_at reviewed\_by service\_links slug status title user\_created user\_updated website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes podcast\_shows testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles mentions\_id date\_created date\_updated id title user\_created user\_updated item Error: Unauthorized request error code message Error: Not found. error code message # GET /items/phases GET /items/phases readItemsPhases List Items List the phases items. Phases fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data code color date\_created date\_updated description id quote sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/phases/{id} GET /items/phases/{id} readSingleItemsPhases Retrieve an Item Retrieve a single phases item by unique identifier. Phases fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data code color date\_created date\_updated description id quote sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles Error: Unauthorized request error code message Error: Not found. error code message # GET /items/podcast_episodes GET /items/podcast\_episodes readItemsPodcastEpisodes List Items List the podcast\_episodes items. PodcastEpisodes fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/podcast_episodes/{id} GET /items/podcast\_episodes/{id} readSingleItemsPodcastEpisodes Retrieve an Item Retrieve a single podcast\_episodes item by unique identifier. PodcastEpisodes fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos topics articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/podcast_hosts GET /items/podcast\_hosts readItemsPodcastHosts List Items List the podcast\_hosts items. PodcastHosts fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated description email first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name linkedin title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows id podcast\_hosts\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/podcast_hosts/{id} GET /items/podcast\_hosts/{id} readSingleItemsPodcastHosts Retrieve an Item Retrieve a single podcast\_hosts item by unique identifier. PodcastHosts fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated description email first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name linkedin title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_hosts\_id podcast\_shows id podcast\_hosts\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors Error: Unauthorized request error code message Error: Not found. error code message # GET /items/podcast_shows GET /items/podcast\_shows readItemsPodcastShows List Items List the podcast\_shows items. PodcastShows fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id podcast\_shows\_id episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id podcast\_shows\_id seasons date\_created date\_updated id season\_number show user\_created user\_updated year episodes sectors id podcast\_shows\_id sectors\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/podcast_shows/{id} GET /items/podcast\_shows/{id} readSingleItemsPodcastShows Retrieve an Item Retrieve a single podcast\_shows item by unique identifier. PodcastShows fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons date\_created date\_updated id season\_number show user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors id podcast\_shows\_id sectors\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/profiles GET /items/profiles readItemsProfiles List Items List the profiles items. Profiles fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data body date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id videos id profiles\_id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/profiles/{id} GET /items/profiles/{id} readSingleItemsProfiles Retrieve an Item Retrieve a single profiles item by unique identifier. Profiles fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data body date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles Error: Unauthorized request error code message Error: Not found. error code message # GET /items/program_forms GET /items/program\_forms readItemsProgramForms List Items List the program\_forms items. ProgramForms fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id id podcast\_shows\_id episodes hosts id podcast\_hosts\_id podcast\_shows\_id phases id phases\_id podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes podcast\_shows tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles id roles\_id testimonials\_id sectors id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks editor\_nodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created user\_updated item Selecteer niet meer dan één item actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created user\_updated variant Bekijk varianten op {rel=""nofollow""} editor\_nodes date\_created date\_updated id user\_created user\_updated items color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created user\_updated variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created user\_updated video artwork Artwork voor audiobestand chapters alt\_text date\_created date\_updated full\_width id image max\_width Maximale breedte in pixels user\_created user\_updated date\_created date\_updated id user\_created user\_updated items testimonials\_id authors authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles id roles\_id videos\_id sectors id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/program_forms/{id} GET /items/program\_forms/{id} readSingleItemsProgramForms Retrieve an Item Retrieve a single program\_forms item by unique identifier. ProgramForms fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id id podcast\_shows\_id episodes hosts id podcast\_hosts\_id podcast\_shows\_id phases id phases\_id podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id id topics\_id themas id sort themas\_id topics\_id podcast\_episodes testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id tracks audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes podcast\_shows audiences\_id id podcast\_shows\_id testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id sectors id profiles\_id sectors\_id testimonials id profiles\_id testimonials\_id videos id profiles\_id videos\_id hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes podcast\_shows id podcast\_hosts\_id podcast\_shows\_id tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles id roles\_id testimonials\_id sectors id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks editor\_nodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items testimonials\_id authors authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author date\_created date\_updated description email first\_name id image job\_title last\_name phone status team\_status user\_created user\_updated articles articles\_id authors\_id id testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles id roles\_id videos\_id sectors id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/programs GET /items/programs readItemsPrograms List Items List the programs items. Programs fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/programs/{id} GET /items/programs/{id} readSingleItemsPrograms Retrieve an Item Retrieve a single programs item by unique identifier. Programs fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort Error: Unauthorized request error code message Error: Not found. error code message # GET /items/qualifications GET /items/qualifications readItemsQualifications List Items List the qualifications items. Qualifications fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id id qualifications\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/qualifications/{id} GET /items/qualifications/{id} readSingleItemsQualifications Retrieve an Item Retrieve a single qualifications item by unique identifier. Qualifications fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/redirects GET /items/redirects readItemsRedirects List Items List the redirects items. Redirects fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data id user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies date\_created user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_updated origin Use a relative path like "/contact-old" destination Use a relative path like "/contact-new", or a URL for external redirects type is\_active Inactive redirect are never used, even if a start date is set start\_date end\_date meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/redirects/{id} GET /items/redirects/{id} readSingleItemsRedirects Retrieve an Item Retrieve a single redirects item by unique identifier. Redirects fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data id user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies date\_created user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_updated origin Use a relative path like "/contact-old" destination Use a relative path like "/contact-new", or a URL for external redirects type is\_active Inactive redirect are never used, even if a start date is set start\_date end\_date Error: Unauthorized request error code message Error: Not found. error code message # GET /items/regional_education_desks GET /items/regional\_education\_desks readItemsRegionalEducationDesks List Items List the regional\_education\_desks items. RegionalEducationDesks fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/regional_education_desks/{id} GET /items/regional\_education\_desks/{id} readSingleItemsRegionalEducationDesks Retrieve an Item Retrieve a single regional\_education\_desks item by unique identifier. RegionalEducationDesks fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos Error: Unauthorized request error code message Error: Not found. error code message # GET /items/roles GET /items/roles readItemsRoles List Items List the roles items. Roles fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/roles/{id} GET /items/roles/{id} readSingleItemsRoles Retrieve an Item Retrieve a single roles item by unique identifier. Roles fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors topics faqs\_id id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/route_answers GET /items/route\_answers readItemsRouteAnswers List Items List the route\_answers items. RouteAnswers fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/route_answers/{id} GET /items/route\_answers/{id} readSingleItemsRouteAnswers Retrieve an Item Retrieve a single route\_answers item by unique identifier. RouteAnswers fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/route_questions GET /items/route\_questions readItemsRouteQuestions List Items List the route\_questions items. RouteQuestions fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/route_questions/{id} GET /items/route\_questions/{id} readSingleItemsRouteQuestions Retrieve an Item Retrieve a single route\_questions item by unique identifier. RouteQuestions fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/route_steps GET /items/route\_steps readItemsRouteSteps List Items List the route\_steps items. RouteSteps fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/route_steps/{id} GET /items/route\_steps/{id} readSingleItemsRouteSteps Retrieve an Item Retrieve a single route\_steps item by unique identifier. RouteSteps fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body Error: Unauthorized request error code message Error: Not found. error code message # GET /items/routes GET /items/routes readItemsRoutes List Items List the routes items. Routes fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated description duration\_in\_months id slug status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies path unique\_name route\_steps id route\_steps\_id date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body routes\_id sort requires\_answers Welke antwoordopties moeten gekozen zijn om deze route te selecteren id route\_answers\_id date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id routes\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/routes/{id} GET /items/routes/{id} readSingleItemsRoutes Retrieve an Item Retrieve a single routes item by unique identifier. Routes fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated description duration\_in\_months id slug status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies path unique\_name route\_steps id route\_steps\_id date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body routes\_id sort requires\_answers Welke antwoordopties moeten gekozen zijn om deze route te selecteren id route\_answers\_id date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id routes\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/scheduled_events GET /items/scheduled\_events readItemsScheduledEvents List Items List the scheduled\_events items. ScheduledEvents fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created end\_at id scheduling\_link date\_created date\_updated default\_duration description durations fields id increment name savvycal\_id slug status scheduled\_events start\_at status team\_member meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/scheduled_events/{id} GET /items/scheduled\_events/{id} readSingleItemsScheduledEvents Retrieve an Item Retrieve a single scheduled\_events item by unique identifier. ScheduledEvents fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created end\_at id scheduling\_link date\_created date\_updated default\_duration description durations fields id increment name savvycal\_id slug status scheduled\_events start\_at status team\_member Error: Unauthorized request error code message Error: Not found. error code message # GET /items/scheduling_links GET /items/scheduling\_links readItemsSchedulingLinks List Items List the scheduling\_links items. SchedulingLinks fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated default\_duration description durations fields id increment name savvycal\_id slug status scheduled\_events date\_created end\_at id scheduling\_link start\_at status team\_member meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/scheduling_links/{id} GET /items/scheduling\_links/{id} readSingleItemsSchedulingLinks Retrieve an Item Retrieve a single scheduling\_links item by unique identifier. SchedulingLinks fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated default\_duration description durations fields id increment name savvycal\_id slug status scheduled\_events date\_created end\_at id scheduling\_link start\_at status team\_member Error: Unauthorized request error code message Error: Not found. error code message # GET /items/school_subjects GET /items/school\_subjects readItemsSchoolSubjects List Items List the school\_subjects items. SchoolSubjects fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs id programs\_id school\_subjects\_id sort meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/school_subjects/{id} GET /items/school\_subjects/{id} readSingleItemsSchoolSubjects Retrieve an Item Retrieve a single school\_subjects item by unique identifier. SchoolSubjects fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects school\_subjects\_id sort Error: Unauthorized request error code message Error: Not found. error code message # GET /items/schools GET /items/schools readItemsSchools List Items List the schools items. Schools fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/schools/{id} GET /items/schools/{id} readSingleItemsSchools Retrieve an Item Retrieve a single schools item by unique identifier. Schools fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies Error: Unauthorized request error code message Error: Not found. error code message # GET /items/seasons GET /items/seasons readItemsSeasons List Items List the seasons items. Seasons fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/seasons/{id} GET /items/seasons/{id} readSingleItemsSeasons Retrieve an Item Retrieve a single seasons item by unique identifier. Seasons fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id podcast\_shows\_id episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts Error: Unauthorized request error code message Error: Not found. error code message # GET /items/sectors GET /items/sectors readItemsSectors List Items List the sectors items. Sectors fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/sectors/{id} GET /items/sectors/{id} readSingleItemsSectors Retrieve an Item Retrieve a single sectors item by unique identifier. Sectors fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item date\_created date\_updated id title user\_created user\_updated item actions color date\_created date\_updated description dismissable icon id title user\_created user\_updated variant editor\_nodes date\_created date\_updated id user\_created user\_updated items color date\_created date\_updated icon icon\_position id internal label size to user\_created user\_updated variant artist audio date\_created date\_updated full\_width id max\_width title type user\_created user\_updated video artwork chapters alt\_text date\_created date\_updated full\_width id image max\_width user\_created user\_updated date\_created date\_updated id user\_created user\_updated items sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member Is deze auteur ook een teamlid? articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors Voor welke onderwijssectoren geldt deze kwalificatie articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar Een korte video van de persoon podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo main\_location path phone slug status title type user\_created user\_updated vendor Bij welke leverancier komt de informatie vandaan? website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item date\_created date\_updated id title user\_created user\_updated item actions color date\_created date\_updated description dismissable icon id title user\_created user\_updated variant editor\_nodes date\_created date\_updated id user\_created user\_updated items color date\_created date\_updated icon icon\_position id internal label size to user\_created user\_updated variant artist audio date\_created date\_updated full\_width id max\_width title type user\_created user\_updated video artwork chapters alt\_text date\_created date\_updated full\_width id image max\_width user\_created user\_updated date\_created date\_updated id user\_created user\_updated items testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/sources GET /items/sources readItemsSources List Items List the sources items. Sources fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated description id status title naam van document of websitedomein url user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id sources\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/sources/{id} GET /items/sources/{id} readSingleItemsSources Retrieve an Item Retrieve a single sources item by unique identifier. Sources fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated description id status title naam van document of websitedomein url user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sources\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/team_members GET /items/team\_members readItemsTeamMembers List Items List the team\_members items. TeamMembers fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url job\_title name status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks authors\_id id testimonials authors\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/team_members/{id} GET /items/team\_members/{id} readSingleItemsTeamMembers Retrieve an Item Retrieve a single team\_members item by unique identifier. TeamMembers fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url job\_title name status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? articles articles\_id authors\_id id testimonials authors\_id id testimonials\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies Error: Unauthorized request error code message Error: Not found. error code message # GET /items/testimonials GET /items/testimonials readItemsTestimonials List Items List the testimonials items. Testimonials fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data body date\_created date\_updated description id path seo slug status summary title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos audiences\_id id videos\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos id phases\_id videos\_id testimonials\_id roles id roles\_id testimonials\_id sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials videos id videos\_id topics\_id tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id tracks\_id podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials videos id tracks\_id videos\_id editor\_nodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort testimonials\_id authors authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id authors\_id id testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials videos id profiles\_id videos\_id testimonials\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/testimonials/{id} GET /items/testimonials/{id} readSingleItemsTestimonials Retrieve an Item Retrieve a single testimonials item by unique identifier. Testimonials fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data body date\_created date\_updated description id path seo slug status summary title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles testimonials\_id roles id roles\_id testimonials\_id sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles editor\_nodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id sort programs educational\_institutions\_id id programs\_id sort audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort testimonials\_id authors authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks authors\_id id testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles testimonials\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/themas GET /items/themas readItemsThemas List Items List the themas items. Themas fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data body date\_created date\_updated icon id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url path seo slug status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) id sort themas\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/themas/{id} GET /items/themas/{id} readSingleItemsThemas Retrieve an Item Retrieve a single themas item by unique identifier. Themas fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data body date\_created date\_updated icon id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url path seo slug status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) id sort themas\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id topics\_id themas podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/topics GET /items/topics readItemsTopics List Items List the topics items. Topics fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data date\_created date\_updated description icon image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/topics/{id} GET /items/topics/{id} readSingleItemsTopics Retrieve an Item Retrieve a single topics item by unique identifier. Topics fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data date\_created date\_updated description icon image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /items/tracks GET /items/tracks readItemsTracks List Items List the tracks items. Tracks fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id tracks\_id podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/tracks/{id} GET /items/tracks/{id} readSingleItemsTracks Retrieve an Item Retrieve a single tracks item by unique identifier. Tracks fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles Error: Unauthorized request error code message Error: Not found. error code message # GET /items/videos GET /items/videos readItemsVideos List Items List the videos items. Videos fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos videos\_id roles id roles\_id videos\_id sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id tracks\_id podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id videos videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # GET /items/videos/{id} GET /items/videos/{id} readSingleItemsVideos Retrieve an Item Retrieve a single videos item by unique identifier. Videos fields query Control what fields are being returned in the object. meta query What metadata to return in the response. version query Retrieve an item's state from a specific Content Version. The value corresponds to the "key" of the Content Version. id path Index of the item. Successful request data body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos videos\_id roles id roles\_id videos\_id sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos videos\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /roles GET /roles getRoles List Roles List the roles. Roles fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. offset query How many items to skip when fetching data. meta query What metadata to return in the response. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. page query Cursor for use in pagination. Often used in combination with limit. Successful request data alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message Error: Not found. error code message # GET /roles/{id} GET /roles/{id} getRole Retrieve a Role Retrieve a single role by unique identifier. Roles id path Unique identifier for the object. fields query Control what fields are being returned in the object. meta query What metadata to return in the response. Successful request data alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors topics faqs\_id id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id Error: Unauthorized request error code message Error: Not found. error code message # GET /server/ping GET /server/ping ping Ping Ping, pong. Ping.. pong. Server Successful request # GET /users GET /users getUsers List Users List the users. Users fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. offset query How many items to skip when fetching data. meta query What metadata to return in the response. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. Successful request data id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message Error: Not found. error code message # GET /users/{id} GET /users/{id} getUser Retrieve a User Retrieve a single user by unique identifier. Users id path Unique identifier for the object. fields query Control what fields are being returned in the object. meta query What metadata to return in the response. Successful request data id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies Error: Unauthorized request error code message Error: Not found. error code message # GET /users/me GET /users/me getMe Retrieve Current User Retrieve the currently authenticated user. Users fields query Control what fields are being returned in the object. meta query What metadata to return in the response. Successful request data id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies Error: Unauthorized request error code message Error: Not found. error code message # PATCH /users PATCH /users updateUsers Update Multiple Users Update multiple users at the same time. Users fields query Control what fields are being returned in the object. limit query A limit on the number of objects that are returned. meta query What metadata to return in the response. offset query How many items to skip when fetching data. sort query How to sort the returned items. `sort` is a CSV of fields used to sort the fetched items. Sorting defaults to ascending (ASC) order but a minus sign (`-`) can be used to reverse this to descending (DESC) order. Fields are prioritized by their order in the CSV. You can also use a `?` to sort randomly. filter query Select items in collection by given conditions. search query Filter by items that contain the given search query in one of their fields. data id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies keys Successful request data id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies meta total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. Error: Unauthorized request error code message # PATCH /users/{id} PATCH /users/{id} updateUser Update a User Update an existing user Users id path Unique identifier for the object. fields query Control what fields are being returned in the object. meta query What metadata to return in the response. id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies Successful request data Error: Unauthorized request error code message Error: Not found. error code message # PATCH /users/me PATCH /users/me updateMe Update Current User Update the currently authenticated user. Users Successful request data id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies Error: Unauthorized request error code message Error: Not found. error code message # PATCH /users/me/track/page PATCH /users/me/track/page updateLastUsedPageMe Update Last Page Updates the last used page field of the currently authenticated user. This is used internally to be able to open the Directus admin app from the last page you used. Users last\_page Path of the page you used last. Successful request Error: Unauthorized request error code message Error: Not found. error code message # POST /auth/login POST /auth/login login Retrieve a Temporary Access Token Retrieve a Temporary Access Token Authentication email Email address of the user you're retrieving the access token for. password Password of the user. mode Whether to retrieve the refresh token in the JSON response, or in a httpOnly cookie. otp The user's one-time-password (if MFA is enabled). Successful authentification data access\_token expires refresh\_token # POST /auth/logout POST /auth/logout logout Log Out Log Out Authentication refresh\_token The refresh token to invalidate. If you have the refresh token in a cookie through /auth/login, you don't have to submit it here. mode Whether the refresh token is submitted in the JSON response, or in a httpOnly cookie. Request successful # POST /auth/password/request POST /auth/password/request passwordRequest Request a Password Reset Request a reset password email to be send. Authentication email Email address of the user you're requesting a reset for. Error: Unauthorized request error code message # POST /auth/password/reset POST /auth/password/reset passwordReset Reset a Password The request a password reset endpoint sends an email with a link to the admin app which in turn uses this endpoint to allow the user to reset their password. Authentication token One-time use JWT token that is used to verify the user. password New password for the user. Error: Unauthorized request error code message # POST /auth/refresh POST /auth/refresh refresh Refresh Token Refresh a Temporary Access Token. Authentication refresh\_token JWT access token you want to refresh. This token can't be expired. mode Whether to submit and retrieve the refresh token in the JSON response, or in a httpOnly cookie. Successful request data access\_token expires refresh\_token Error: Unauthorized request error code message # ApplicantActivity ApplicantActivity applicant date\_created date\_updated id status time\_zone activity\_log applicant date\_created date\_updated id scheduled\_events date\_created date\_updated id # Applicants Applicants date\_created date\_updated id status time\_zone activity\_log applicant date\_created date\_updated id status time\_zone activity\_log scheduled\_events date\_created date\_updated id scheduled\_events # Areas Areas area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies # Articles Articles body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks # ArticlesAudiences ArticlesAudiences articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id audiences\_id id # ArticlesAuthors ArticlesAuthors articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id authors\_id id # ArticlesDirectusUsers ArticlesDirectusUsers articles\_id directus\_users\_id id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies id # ArticlesDocuments ArticlesDocuments articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id documents\_id id # ArticlesEditorNodes ArticlesEditorNodes articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id collection id item # ArticlesFaqs ArticlesFaqs articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id faqs\_id id # ArticlesPhases ArticlesPhases articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id phases\_id # ArticlesQualifications ArticlesQualifications articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id qualifications\_id # ArticlesRoles ArticlesRoles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id roles\_id # ArticlesSectors ArticlesSectors articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id sectors\_id # ArticlesSources ArticlesSources articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id sources\_id # ArticlesTopics ArticlesTopics articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id sort topics\_id # ArticlesTracks ArticlesTracks articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id tracks\_id # Audiences Audiences alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_episodes podcast\_shows testimonials videos # Authors Authors date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url job\_title name status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks authors\_id id testimonials authors\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials # Availabilities Availabilities date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start # Buttons Buttons color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} # Callouts Callouts actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id actions color date\_created date\_updated description dismissable icon id title user\_created user\_updated variant editor\_nodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id # CalloutsEditorNodes CalloutsEditorNodes callouts\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id collection id item # ContentListItems ContentListItems content\_lists date\_created date\_updated id user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title description icon id image internal link mediatype sort title # ContentLists ContentLists date\_created date\_updated id user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists date\_created date\_updated id user\_created user\_updated items description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title # Documents Documents asset id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id # EducationalInstitutions EducationalInstitutions brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects path phone slug status title type user\_created user\_updated vendor website locations programs # EducationalInstitutionsLocations EducationalInstitutionsLocations educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id sort programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort id locations\_id sort # EducationalInstitutionsPrograms EducationalInstitutionsPrograms educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id sort programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort id programs\_id sort # Faqs Faqs answer date\_created date\_updated id question status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated phases audiences sectors topics articles # FaqsAudiences FaqsAudiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id # FaqsPhases FaqsPhases faqs\_id answer date\_created date\_updated id question status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id phases\_id # FaqsSectors FaqsSectors faqs\_id answer date\_created date\_updated id question status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id sectors\_id # FaqsTopics FaqsTopics faqs\_id answer date\_created date\_updated id question status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id topics\_id # Files Files id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url # Folders Folders id Unique identifier for the folder. name Name of the folder. parent Unique identifier of the parent folder. This allows for nested folders. id name parent # Images Images alt\_text date\_created date\_updated full\_width id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies # Locations Locations address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs # Mediaplayers Mediaplayers artist audio date\_created date\_updated full\_width id max\_width title type user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters # Mentions Mentions date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id date\_created date\_updated id title user\_created user\_updated item # MentionsItem MentionsItem collection id item body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo main\_location path phone slug status title type user\_created user\_updated vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo orientation\_activity\_types path phone phone\_availability privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld service\_links slug status title user\_created user\_updated website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id mentions\_id # Phases Phases code color date\_created date\_updated description id quote sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_episodes podcast\_shows testimonials videos # PodcastEpisodes PodcastEpisodes audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts # PodcastEpisodesAudiences PodcastEpisodesAudiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id podcast\_episodes\_id # PodcastEpisodesPhases PodcastEpisodesPhases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id podcast\_episodes\_id # PodcastEpisodesPodcastHosts PodcastEpisodesPodcastHosts id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id podcast\_hosts\_id # PodcastEpisodesProfiles PodcastEpisodesProfiles id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id profiles\_id # PodcastEpisodesRoles PodcastEpisodesRoles id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id # PodcastEpisodesSectors PodcastEpisodesSectors id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id # PodcastEpisodesTopics PodcastEpisodesTopics id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id topics\_id # PodcastEpisodesTracks PodcastEpisodesTracks id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos audiences\_id id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles id podcast\_shows\_id episodes hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id phases\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_shows\_id seasons sectors id podcast\_shows\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles hosts id podcast\_episodes\_id podcast\_hosts\_id tracks\_id # PodcastHosts PodcastHosts date\_created date\_updated description email first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name linkedin title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows id podcast\_hosts\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors podcast\_shows # PodcastShows PodcastShows artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated tagline audiences episodes hosts phases seasons sectors # PodcastShowsAudiences PodcastShowsAudiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id podcast\_shows\_id # PodcastShowsPhases PodcastShowsPhases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id podcast\_shows\_id # PodcastShowsPodcastHosts PodcastShowsPodcastHosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name linkedin title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows id podcast\_hosts\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors podcast\_shows\_id # PodcastShowsSectors PodcastShowsSectors id podcast\_shows\_id artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id podcast\_shows\_id episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id podcast\_shows\_id seasons date\_created date\_updated id season\_number show user\_created user\_updated year episodes sectors id podcast\_shows\_id sectors\_id sectors\_id # Profiles Profiles body date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id profiles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles roles sectors testimonials videos # ProfilesRoles ProfilesRoles id profiles\_id body date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id videos id profiles\_id videos\_id roles\_id # ProfilesSectors ProfilesSectors id profiles\_id body date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id videos id profiles\_id videos\_id sectors\_id # ProgramForms ProgramForms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort sort url user\_created user\_updated vendor track # Programs Programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects # ProgramsQualifications ProgramsQualifications id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort qualifications\_id # ProgramsRoles ProgramsRoles id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort roles\_id # ProgramsSchoolSubjects ProgramsSchoolSubjects id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort school\_subjects\_id sort # ProgramsSectors ProgramsSectors id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort sectors\_id # Qualifications Qualifications alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles # QualificationsSectors QualificationsSectors id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id id qualifications\_id sectors\_id # Query Query fields Control what fields are being returned in the object. filter search Filter by items that contain the given search query in one of their fields. sort How to sort the returned items. limit Set the maximum number of items that will be returned offset How many items to skip when fetching data. page Cursor for use in pagination. Often used in combination with limit. deep Deep allows you to set any of the other query parameters on a nested relational dataset. # Redirects Redirects id user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies date\_created user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_updated origin Use a relative path like "/contact-old" destination Use a relative path like "/contact-new", or a URL for external redirects type is\_active Inactive redirect are never used, even if a start date is set start\_date end\_date # RegionalEducationDesks RegionalEducationDesks appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id appointment\_for\_visit area cities\_municipalities consultation\_service\_description consultation\_service\_url content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo orientation\_activity\_types path phone phone\_availability privacy\_policy regions reviewed\_at reviewed\_by service\_links slug status title user\_created user\_updated website reviewers sectors sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos # RegionalEducationDesksSectors RegionalEducationDesksSectors id regional\_education\_desks\_id appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos sectors\_id # RelatedContentLists RelatedContentLists date\_created date\_updated id user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id sort programs educational\_institutions\_id id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sort audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id date\_created date\_updated id user\_created user\_updated items sort # RelatedContentListsItems RelatedContentListsItems collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs educational\_institutions\_id id programs\_id sort id locations\_id sort programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor track alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id tracks audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks profiles id profiles\_id videos\_id school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs sort body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item related\_content\_lists\_id sort sort # Roles Roles alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated sectors articles podcast\_episodes programs testimonials videos # RolesSectors RolesSectors id roles\_id alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id sectors\_id # RouteAnswers RouteAnswers date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers date\_created date\_updated description id question sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id sort status title user\_created user\_updated requires\_answers # RouteAnswersRouteAnswers RouteAnswersRouteAnswers id related\_route\_answers\_id date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id route\_answers\_id # RouteQuestions RouteQuestions date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description id question sort status user\_created user\_updated answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id # RouteSteps RouteSteps date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body # Routes Routes date\_created date\_updated description duration\_in\_months id slug status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies path unique\_name route\_steps id route\_steps\_id date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body routes\_id date\_created date\_updated description duration\_in\_months id slug status title user\_created user\_updated path unique\_name route\_steps requires\_answers Welke antwoordopties moeten gekozen zijn om deze route te selecteren id route\_answers\_id date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id routes\_id sort requires\_answers # RoutesRouteAnswers RoutesRouteAnswers id route\_answers\_id date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync program\_id sort url user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id routes\_id date\_created date\_updated description duration\_in\_months id slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies path unique\_name route\_steps id route\_steps\_id date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body routes\_id sort requires\_answers Welke antwoordopties moeten gekozen zijn om deze route te selecteren id route\_answers\_id routes\_id # RoutesRouteSteps RoutesRouteSteps id route\_steps\_id date\_created date\_updated duration\_in\_months id long\_title name short\_title slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies body routes\_id date\_created date\_updated description duration\_in\_months id slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies path unique\_name route\_steps id route\_steps\_id routes\_id sort requires\_answers Welke antwoordopties moeten gekozen zijn om deze route te selecteren id route\_answers\_id date\_created date\_updated description id question Bij welke routevraag hoort dit antwoord date\_created date\_updated description Toelichting voor in de infobullet van de vraag id question sort status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies answers sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies requires\_answers Welke eerdere antwoorden moeten gegeven zijn om deze optie beschikbaar te maken id related\_route\_answers\_id route\_answers\_id routes\_id sort # ScheduledEvents ScheduledEvents date\_created end\_at id scheduling\_link date\_created date\_updated default\_duration description durations fields id increment name savvycal\_id slug status scheduled\_events date\_created end\_at id scheduling\_link start\_at status team\_member start\_at status team\_member # SchedulingLinks SchedulingLinks date\_created date\_updated default\_duration description durations fields id increment name savvycal\_id slug status scheduled\_events date\_created end\_at id scheduling\_link date\_created date\_updated default\_duration description durations fields id increment name savvycal\_id slug status scheduled\_events start\_at status team\_member # SchoolSubjects SchoolSubjects alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort # Schools Schools date\_created date\_updated id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies # Seasons Seasons date\_created date\_updated id season\_number show artwork id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id podcast\_shows\_id episodes audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts hosts id podcast\_hosts\_id date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name linkedin title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies episodes id podcast\_episodes\_id podcast\_hosts\_id podcast\_shows podcast\_shows\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id podcast\_shows\_id seasons date\_created date\_updated id season\_number show user\_created user\_updated year episodes sectors id podcast\_shows\_id sectors\_id user\_created user\_updated year episodes # Sectors Sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos # SectorsArticles SectorsArticles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles testimonials authors\_id id testimonials\_id id documents articles\_id documents\_id asset id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url date\_created date\_updated description id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors Voor welke onderwijssectoren geldt deze kwalificatie id qualifications\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos articles roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title naam van document of websitedomein url user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id id sectors\_id # SectorsFaqs SectorsFaqs faqs\_id answer date\_created date\_updated id question status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors faqs\_id id sectors\_id topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id sectors\_id # Sources Sources date\_created date\_updated description id status title naam van document of websitedomein url user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles # TeamMembers TeamMembers author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url job\_title name status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id authors\_id id testimonials authors\_id id testimonials\_id date\_created date\_updated description email first\_name id image job\_title last\_name phone status team\_status user\_created user\_updated # Testimonials Testimonials body date\_created date\_updated description id path seo slug status summary title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles # TestimonialsAudiences TestimonialsAudiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id testimonials\_id # TestimonialsAuthors TestimonialsAuthors authors\_id date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url job\_title name status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id authors\_id id testimonials authors\_id id testimonials\_id id testimonials\_id # TestimonialsEditorNodes TestimonialsEditorNodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id id sectors\_id featured\_faqs faqs\_id id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations educational\_institutions\_id id locations\_id address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs sort programs educational\_institutions\_id id programs\_id sort audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner Dit veld wordt gebruikt om punten verspreid binnen het gebied op te slaan. Deze worden toegepast binnen een workaround voor Algolia date\_created date\_updated id status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors id regional\_education\_desks\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort testimonials\_id # TestimonialsPhases TestimonialsPhases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id testimonials\_id # TestimonialsProfiles TestimonialsProfiles id profiles\_id body date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id videos id profiles\_id videos\_id testimonials\_id # TestimonialsRoles TestimonialsRoles id roles\_id alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id testimonials\_id # TestimonialsSectors TestimonialsSectors id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id testimonials\_id # TestimonialsTopics TestimonialsTopics id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos audiences\_id id videos\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos id phases\_id videos\_id testimonials\_id roles id roles\_id testimonials\_id sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials videos id videos\_id topics\_id tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id tracks\_id podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials videos id tracks\_id videos\_id editor\_nodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort testimonials\_id authors authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id authors\_id id testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials videos id profiles\_id videos\_id testimonials\_id topics\_id # TestimonialsTracks TestimonialsTracks id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos audiences\_id id videos\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials videos id phases\_id videos\_id testimonials\_id roles id roles\_id testimonials\_id sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials videos id videos\_id topics\_id tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id tracks\_id podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials videos id tracks\_id videos\_id editor\_nodes collection id item date\_created date\_updated id title Dit label wordt in de lopende tekst geplaatst. Indien leeg, wordt titel van het item gebruikt dat je mentioned user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies item Selecteer niet meer dan één item collection id item body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks mentions\_id actions Voeg knoppen toe aan de callout card color date\_created date\_updated description dismissable icon Zoek een icon via {rel=""nofollow""} id title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} editor\_nodes callouts\_id collection id item date\_created date\_updated id title user\_created user\_updated item date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items content\_lists description icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url internal link mediatype sort title color date\_created date\_updated icon Zoek een icon via {rel=""nofollow""} icon\_position id internal Gaat de link naar een pagina in de site onderwijsin.nl label size to Gebruik een URL voor extra links en een pad voor interne links (bijv. "/contact") user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies variant Bekijk varianten op {rel=""nofollow""} artist audio date\_created date\_updated full\_width id max\_width title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video artwork Artwork voor audiobestand id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url chapters alt\_text date\_created date\_updated full\_width id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url max\_width Maximale breedte in pixels user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies date\_created date\_updated id user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies items collection id item crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url main\_location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path phone slug status title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke leverancier komt de informatie vandaan? website locations programs audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors appointment\_for\_visit area area\_bounds area\_center area\_inner date\_created date\_updated id status title user\_created user\_updated cities\_municipalities Plaats- en gemeentenamen die binnen het werkgebied vallen. Voeg toe als "komma, gescheiden, lijst" consultation\_service\_description consultation\_service\_url URL waar de doelgroep een gesprek kan plannen content\_types date\_created date\_updated description email email\_response\_time has\_consultation\_service has\_physical\_location id location logo id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url orientation\_activity\_types path phone phone\_availability date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start privacy\_policy regions reviewed\_at reviewed\_by Wordt automatisch gevuld id first\_name last\_name email location title description avatar language status role token algolia\_token policies service\_links slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies website reviewers sectors code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles related\_content\_lists\_id sort testimonials\_id authors authors\_id date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title name status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies team\_member Is deze auteur ook een teamlid? author Welke auteur is gelijk aan dit teamlid? date\_created date\_updated description email first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url job\_title last\_name phone status team\_status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id authors\_id id testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials videos id profiles\_id videos\_id testimonials\_id tracks\_id # Themas Themas body date\_created date\_updated icon id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url path seo slug status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) id sort themas\_id body date\_created date\_updated icon id image path seo slug status title user\_created user\_updated topics topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id topics\_id themas podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id # ThemasTopics ThemasTopics id sort themas\_id body date\_created date\_updated icon id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url path seo slug status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) id sort themas\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id topics\_id # Topics Topics date\_created date\_updated description icon image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts topics\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles topics\_id videos id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles topics\_id faqs themas podcast\_episodes testimonials videos # Tracks Tracks alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts tracks\_id testimonials id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles tracks\_id videos id tracks\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles podcast\_episodes testimonials videos # Users Users id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id first\_name last\_name email location title description avatar language status role token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id token algolia\_token policies # Videos Videos body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs Bij welke FAQ's hoort dit artikel phases qualifications roles sources Welke bronnen zijn gebruikt voor het artikel topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours organization\_hovi\_id organization\_kiesmbo\_id status title url user\_created user\_updated vendor vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions qualifications roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated video publication\_date audiences phases roles sectors topics tracks profiles # VideosAudiences VideosAudiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id id videos\_id # VideosPhases VideosPhases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id videos\_id # VideosProfiles VideosProfiles id profiles\_id body date\_created date\_updated first\_name id image id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url last\_name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id videos id profiles\_id videos\_id videos\_id # VideosRoles VideosRoles id roles\_id alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors topics faqs\_id id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies editor\_nodes articles\_id collection id item sectors audiences articles\_id audiences\_id id authors articles\_id authors\_id id documents articles\_id documents\_id id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id id phases articles\_id id phases\_id qualifications articles\_id id qualifications\_id roles articles\_id id roles\_id sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id topics articles\_id id sort topics\_id tracks articles\_id id tracks\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies year episodes show artwork id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url id path podcast\_status slug status title trailer user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics id podcast\_episodes\_id topics\_id tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id id podcast\_episodes\_id phases id phases\_id podcast\_episodes\_id roles id podcast\_episodes\_id roles\_id sectors guests id podcast\_episodes\_id profiles\_id hosts id podcast\_episodes\_id podcast\_hosts\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions programs path slug status study\_number title type user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id id programs\_id sort qualifications id programs\_id qualifications\_id roles Welke functies kun je vervullen met deze opleiding? id programs\_id roles\_id sectors In welke onderwijssectoren kun je werken met deze opleiding? program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id sort sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id id testimonials\_id phases id phases\_id testimonials\_id roles id roles\_id testimonials\_id sectors topics id testimonials\_id topics\_id tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id id testimonials\_id profiles id profiles\_id testimonials\_id videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id id videos\_id phases id phases\_id videos\_id roles id roles\_id videos\_id sectors topics id videos\_id topics\_id tracks id tracks\_id videos\_id profiles id profiles\_id videos\_id articles articles\_id id roles\_id podcast\_episodes id podcast\_episodes\_id roles\_id programs id programs\_id roles\_id testimonials id roles\_id testimonials\_id videos id roles\_id videos\_id videos\_id # VideosSectors VideosSectors id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies seo faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id testimonials id phases\_id testimonials\_id videos id phases\_id videos\_id audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id testimonials audiences\_id id testimonials\_id videos audiences\_id id videos\_id faqs\_id id sectors topics faqs\_id id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs themas id sort themas\_id topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos id videos\_id topics\_id articles articles\_id faqs\_id id id sectors\_id articles articles\_id id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id sectors\_id testimonials id sectors\_id testimonials\_id videos id sectors\_id videos\_id videos\_id # VideosTopics VideosTopics id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated articles podcast\_episodes testimonials videos editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names Voeg synoniemen toe color date\_created date\_updated id sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id audiences\_id id podcast\_episodes audiences\_id id podcast\_episodes\_id podcast\_shows audiences\_id id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials audiences\_id id testimonials\_id videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id phases\_id podcast\_episodes id phases\_id podcast\_episodes\_id podcast\_shows id phases\_id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors testimonials id phases\_id testimonials\_id videos videos\_id roles id roles\_id videos\_id sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies alt\_names name path slug id articles articles\_id id sort topics\_id faqs faqs\_id answer date\_created date\_updated id question status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies phases faqs\_id id phases\_id audiences audiences\_id faqs\_id id sectors faqs\_id id sectors\_id topics articles articles\_id faqs\_id id id topics\_id themas id sort themas\_id body date\_created date\_updated icon id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url path seo slug status title user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies topics Welke onderwerpen horen bij dit thema? (content van dit onderwerp wordt op de thema pagina getoond) topics\_id podcast\_episodes id podcast\_episodes\_id topics\_id testimonials id testimonials\_id topics\_id videos tracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id tracks\_id podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image id storage filename\_disk filename\_download title type created\_on modified\_on filesize width height description tags uploaded\_on cloudinary\_asset\_url last\_name path slug status user\_created id first\_name last\_name email location title description avatar language status role token algolia\_token policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies video\_avatar Een korte video van de persoon podcast\_episodes id podcast\_episodes\_id profiles\_id roles id profiles\_id roles\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles podcast\_episodes programs testimonials videos sectors id profiles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs articles featured\_articles featured\_faqs podcast\_episodes podcast\_shows programs testimonials videos testimonials id profiles\_id testimonials\_id videos videos\_id topics\_id # VideosTracks VideosTracks id tracks\_id alt\_names date\_created date\_updated description id name path slug status user\_created id Unique identifier for the user. first\_name First name of the user. last\_name Last name of the user. email Unique email address for the user. location The user's location. title The user's title. description The user's description. avatar The user's avatar. id Unique identifier for the file. storage Where the file is stored. Either `local` for the local filesystem or the name of the storage adapter (for example `s3`). filename\_disk Name of the file on disk. By default, Directus uses a random hash for the filename. filename\_download How you want to the file to be named when it's being downloaded. title Title for the file. Is extracted from the filename on upload, but can be edited by the user. type MIME type of the file. created\_on When the file was created. modified\_on filesize Size of the file in bytes. width Width of the file in pixels. Only applies to images. height Height of the file in pixels. Only applies to images. description Description for the file. tags Tags for the file. Is automatically populated based on Exif data for images. uploaded\_on When the file was last uploaded/replaced. cloudinary\_asset\_url language The user's language used in Directus. status Status of the user. role Unique identifier of the role of this user. alt\_names date\_created date\_updated description id name path slug Slug for the role status user\_created user\_updated sectors In welke onderwijssectoren kun je deze functie vervullen id roles\_id sectors\_id code title alt\_names description icon id slug sort status costs\_actions costs\_content introduction roles\_content routes\_content salary\_cards salary\_content date\_created date\_updated user\_created user\_updated seo faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_articles articles\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated editor\_nodes sectors audiences authors documents faqs phases qualifications roles sources topics tracks id sectors\_id featured\_faqs faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id sectors\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls id path publication\_date season show slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics tracks audiences phases roles sectors guests hosts sectors\_id podcast\_shows id podcast\_shows\_id artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors sectors\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id level location path slug status study\_number title type user\_created user\_updated vendor educational\_institutions qualifications roles sectors program\_forms school\_subjects sectors\_id testimonials id sectors\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date audiences phases roles sectors topics tracks editor\_nodes authors profiles videos id sectors\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date audiences phases roles sectors topics tracks profiles articles articles\_id body date\_created date\_updated description Korte beschrijving van artikel. Wordt o.a. voor zoekresultaten gebruikt. id path seo slug status summary De samenvatting die wordt gebruikt als introductietekst van het artikel title user\_created user\_updated editor\_nodes articles\_id collection id item sectors articles\_id id sectors\_id audiences articles\_id audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id authors articles\_id authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id documents articles\_id documents\_id asset date\_created date\_updated description id status title user\_created user\_updated articles id faqs Bij welke FAQ's hoort dit artikel articles\_id faqs\_id answer date\_created date\_updated id question status user\_created user\_updated phases audiences sectors topics articles id phases articles\_id id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos qualifications articles\_id id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles sources Welke bronnen zijn gebruikt voor het artikel articles\_id id sources\_id date\_created date\_updated description id status title url user\_created user\_updated articles topics articles\_id id sort topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks articles\_id id tracks\_id id roles\_id podcast\_episodes id podcast\_episodes\_id audio body date\_created date\_updated duration episode\_number external\_urls Links naar externe partijen waar aflevering beschikbaar is (zoals Spotify) id path publication\_date Afleveringen waarvan de publicatiedatum in de toekomst ligt, zijn zichtbaar maar kunnen niet beluisterd worden. season date\_created date\_updated id season\_number show artwork creator\_name date\_created date\_updated description external\_urls Links naar externe partijen waar show beschikbaar is (zoals Spotify) header\_image Wordt o.a. bovenaan de podcastpagina getoond id path podcast\_status slug status title trailer user\_created user\_updated tagline Een korte zin die de show beschrijft audiences episodes hosts phases seasons sectors user\_created user\_updated year episodes show artwork creator\_name date\_created date\_updated description external\_urls header\_image id path podcast\_status slug status title trailer user\_created user\_updated tagline audiences episodes hosts phases seasons sectors slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated topics id podcast\_episodes\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id podcast\_episodes\_id tracks\_id audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id podcast\_episodes\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos podcast\_episodes\_id roles sectors id podcast\_episodes\_id sectors\_id guests id podcast\_episodes\_id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos hosts id podcast\_episodes\_id podcast\_hosts\_id date\_created date\_updated description email first\_name id image last\_name linkedin title user\_created user\_updated episodes podcast\_shows roles\_id programs id programs\_id crebo crebo\_profile credits croho croho\_name croho\_sector date\_created date\_updated degrees financing hovi\_id id kiesmbo\_id generated at runtime as `${product.crebo}_${org.brin}_${location_id}` level location address brinvest city country date\_created date\_updated hovi\_id id location\_address location\_components location\_geopoint opening\_hours Openings- of bezoekstijden voor deze locatie date\_created date\_updated friday friday\_end friday\_start id monday monday\_end monday\_start saturday saturday\_end saturday\_start sunday sunday\_end sunday\_start thursday thursday\_end thursday\_start tuesday tuesday\_end tuesday\_start user\_created user\_updated wednesday wednesday\_end wednesday\_start organization\_hovi\_id organization\_kiesmbo\_id status title url Voeg volledige URL toe incl. https\:// user\_created user\_updated vendor Waar komen de gegevens vandaan vestiging\_SK123\_id zip educational\_institutions educational\_institutions\_id id locations\_id sort programs path slug status study\_number title type user\_created user\_updated vendor Bij welke bron komt de informatie vandaan educational\_institutions educational\_institutions\_id brin\_code code date\_created date\_updated description email hovi\_id id kiesmbo\_id last\_sync logo main\_location path phone slug status title type user\_created user\_updated vendor website locations programs id programs\_id sort qualifications id programs\_id qualifications\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated sectors articles roles Welke functies kun je vervullen met deze opleiding? sectors In welke onderwijssectoren kun je werken met deze opleiding? id programs\_id sectors\_id program\_forms date\_created date\_updated description id last\_sync Wanneer is de data voor het laatst gesynct vanuit de leverancier program\_id sort url URL waarop meer informatie te vinden is over de opleiding (of variant) user\_created user\_updated vendor track school\_subjects Welke schoolvakken (in het VO) kun je geven met deze opleiding? id programs\_id school\_subjects\_id alt\_names date\_created date\_updated description id name path slug status user\_created user\_updated programs sort roles\_id testimonials id roles\_id testimonials\_id body date\_created date\_updated description id path seo slug status summary title user\_created user\_updated publication\_date Verhalen waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet gelezen worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id testimonials\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos testimonials\_id roles sectors id sectors\_id testimonials\_id topics id testimonials\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id testimonials\_id tracks\_id editor\_nodes collection id item testimonials\_id authors authors\_id date\_created date\_updated first\_name id image job\_title name status user\_created user\_updated team\_member articles testimonials id testimonials\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos testimonials\_id videos id roles\_id videos\_id body date\_created date\_updated duration id path slug speaker\_map status title transcript\_raw transcript\_string transcript\_string\_with\_speakers user\_created user\_updated video publication\_date Video's waarvan de publicatiedatum in de toekomst licht zijn vindbaar maar kunnen nog niet bekeken worden audiences audiences\_id alt\_names color date\_created date\_updated id sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos id videos\_id phases id phases\_id code color date\_created date\_updated description id quote sort status title user\_created user\_updated articles podcast\_episodes podcast\_shows testimonials videos videos\_id roles sectors id sectors\_id videos\_id topics id videos\_id topics\_id date\_created date\_updated description icon image status user\_created user\_updated alt\_names name path slug id articles faqs themas podcast\_episodes testimonials videos tracks id tracks\_id videos\_id profiles id profiles\_id body date\_created date\_updated first\_name id image last\_name path slug status user\_created user\_updated video\_avatar podcast\_episodes roles sectors testimonials videos videos\_id token Static token for the user. algolia\_token Een API token voor Algolia, waarbij access filters zijn toegepast obv roles en policies policies user\_updated id first\_name last\_name email location title description avatar language status role token algolia\_token policies articles articles\_id id tracks\_id podcast\_episodes id podcast\_episodes\_id tracks\_id testimonials id testimonials\_id tracks\_id videos id tracks\_id videos\_id videos\_id # x-metadata x-metadata total\_count Returns the total item count of the collection you're querying. filter\_count Returns the item count of the collection you're querying, taking the current filter/search parameters into account. # ApplicantActivity ApplicantActivity Activiteit in dossier van adviesvragers List Items Retrieve an Item # Applicants Applicants Mensen die advies vragen List Items Retrieve an Item # Areas Areas Gebieden voor organisaties List Items Retrieve an Item # Articles Articles Artikelen uit de kennisbank List Items Retrieve an Item # Audiences Audiences Doelgroepen voor content items List Items Retrieve an Item # Authentication Authentication All data within the platform is private by default. The public role can be configured to expose data without authentication, or you can pass an access token to the API to access private data. Retrieve a Temporary Access Token Refresh Token Log Out Request a Password Reset Reset a Password List OAuth Providers Authenticated using an OAuth provider # Authors Authors Auteurs van artikelen List Items Retrieve an Item # Availabilities Availabilities Openingstijden List Items Retrieve an Item # Buttons Buttons Button nodes # Callouts Callouts Callout Card nodes # ContentLists ContentLists Content list nodes # Documents Documents Documenten die als download worden aangeboden bij artikelen List Items Retrieve an Item # EducationalInstitutions EducationalInstitutions Gegevens van onderwijsinstellingen in het middelbaar beroepsonderwijs en het hoger onderwijs List Items Retrieve an Item # Faqs Faqs Veelgestelde vragen uit de kennisbank List Items Retrieve an Item # Images Images Image nodes # Locations Locations Locaties van organisaties List Items Retrieve an Item # Mediaplayers Mediaplayers Mediaplayer nodes # Mentions Mentions Mention nodes List Items Retrieve an Item # MentionsItem MentionsItem List Items Retrieve an Item # Phases Phases Fases van de klantreis List Items Retrieve an Item # PodcastEpisodes PodcastEpisodes Individuele afleveringen van de podcasts List Items Retrieve an Item # PodcastHosts PodcastHosts Hosts en / of interviewers van de podcasts List Items Retrieve an Item # PodcastShows PodcastShows Podcast shows die worden geproduceerd of gepubliceerd door het Onderwijsloket List Items Retrieve an Item # Profiles Profiles Profielen van overstappers en andere ervaringsdeskundigen List Items Retrieve an Item # ProgramForms ProgramForms Gegevens van opleidingsvarianten van individuele opleidingen List Items Retrieve an Item # Programs Programs Gegevens over opleidingen en opleidingsaanbod waarmee je een relevante kwalificatie kunt behalen List Items Retrieve an Item # Qualifications Qualifications Bevoegdheden en andere kwalificaties waarmee je een functie in het onderwijs kunt vervullen List Items Retrieve an Item # Redirects Redirects Stores redirects for changed slugs List Items Retrieve an Item # RegionalEducationDesks RegionalEducationDesks Gegevens van regionale onderwijsloketten List Items Retrieve an Item # RelatedContentLists RelatedContentLists Related content list nodes # Roles Roles Roles are groups of users that share permissions. List Roles Retrieve a Role List Items Retrieve an Item # RouteAnswers RouteAnswers Dynamische antwoordopties voor routetool List Items Retrieve an Item # RouteQuestions RouteQuestions Vragen uit de routetool List Items Retrieve an Item # RouteSteps RouteSteps Individuele stappen binnen routes List Items Retrieve an Item # Routes Routes Alle routes naar het onderwijs List Items Retrieve an Item # ScheduledEvents ScheduledEvents Boekingen uit Savvycal List Items Retrieve an Item # SchedulingLinks SchedulingLinks Boekinglinks uit SavvyCal List Items Retrieve an Item # SchoolSubjects SchoolSubjects Schoolvakken in het voortgezet onderwijs List Items Retrieve an Item # Schools Schools Gegevens van scholen in het basis- en voortgezet onderwijs List Items Retrieve an Item # Seasons Seasons Individuele seizoenen van de podcasts. List Items Retrieve an Item # Sectors Sectors De onderwijssectoren List Items Retrieve an Item # Server Server Access to where Directus runs. Allows you to make sure your server has everything needed to run the platform, and check what kind of latency we're dealing with. Ping # Sources Sources Bronnen gebruikt in artikelen List Items Retrieve an Item # TeamMembers TeamMembers Personen werkzaam bij (of voor) het Onderwijsloket List Items Retrieve an Item # Testimonials Testimonials Ervaringsverhalen van overstappers naar het onderwijs List Items Retrieve an Item # Themas Themas List Items Retrieve an Item # Topics Topics Individuele onderwerpen waar content items over kunnen gaan List Items Retrieve an Item # Tracks Tracks Opleidingstrajecten om je kwalificatie te behalen List Items Retrieve an Item # Users Users Users are what gives you access to the data. List Users Update Multiple Users Retrieve a User Update a User Retrieve Current User Update Current User Update Last Page # Videos Videos Video’s die zijn geproduceerd of gepubliceerd door het Onderwijsloket List Items Retrieve an Item